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 boolean
hasNext()
Returns true if another external location is available with the next() method.ExternalLocation
next()
Returns the next external locationvoid
remove()
-
-
-
Constructor Detail
-
ExternalLocationAdapter
public ExternalLocationAdapter(java.util.Iterator<ExternalLocation> iterator)
-
-
Method Detail
-
hasNext
public boolean hasNext()
Description copied from interface:ExternalLocationIterator
Returns true if another external location is available with the next() method.- Specified by:
hasNext
in interfaceExternalLocationIterator
- Specified by:
hasNext
in interfacejava.util.Iterator<ExternalLocation>
-
next
public ExternalLocation next()
Description copied from interface:ExternalLocationIterator
Returns the next external location- Specified by:
next
in interfaceExternalLocationIterator
- Specified by:
next
in interfacejava.util.Iterator<ExternalLocation>
-
remove
public void remove()
- Specified by:
remove
in interfacejava.util.Iterator<ExternalLocation>
-
-