Package ghidra.program.model.symbol
Class ExternalLocationAdapter
- java.lang.Object
-
- ghidra.program.model.symbol.ExternalLocationAdapter
-
- All Implemented Interfaces:
ExternalLocationIterator,java.util.Iterator<ExternalLocation>
public class ExternalLocationAdapter extends java.lang.Object implements ExternalLocationIterator
-
-
Constructor Summary
Constructors Constructor Description ExternalLocationAdapter(java.util.Iterator<ExternalLocation> iterator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Returns true if another external location is available with the next() method.ExternalLocationnext()Returns the next external locationvoidremove()
-
-
-
Constructor Detail
-
ExternalLocationAdapter
public ExternalLocationAdapter(java.util.Iterator<ExternalLocation> iterator)
-
-
Method Detail
-
hasNext
public boolean hasNext()
Description copied from interface:ExternalLocationIteratorReturns true if another external location is available with the next() method.- Specified by:
hasNextin interfaceExternalLocationIterator- Specified by:
hasNextin interfacejava.util.Iterator<ExternalLocation>
-
next
public ExternalLocation next()
Description copied from interface:ExternalLocationIteratorReturns the next external location- Specified by:
nextin interfaceExternalLocationIterator- Specified by:
nextin interfacejava.util.Iterator<ExternalLocation>
-
remove
public void remove()
- Specified by:
removein interfacejava.util.Iterator<ExternalLocation>
-
-