Package ghidra.program.model.block
Interface CodeBlockReferenceIterator
- 
- All Known Implementing Classes:
 SimpleDestReferenceIterator,SimpleSourceReferenceIterator,SubroutineDestReferenceIterator,SubroutineSourceReferenceIterator
public interface CodeBlockReferenceIteratorAn iterator interface over CodeBlockReferences.- See Also:
 CodeBlockReference
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasNext()Return true if next() will return a CodeBlockReference.CodeBlockReferencenext()Return the next CodeBlockReference. 
 - 
 
- 
- 
Method Detail
- 
hasNext
boolean hasNext() throws CancelledExceptionReturn true if next() will return a CodeBlockReference.- Throws:
 CancelledException- thrown if the operation is cancelled.
 
- 
next
CodeBlockReference next() throws CancelledException
Return the next CodeBlockReference.- Throws:
 CancelledException- thrown if the operation is cancelled.
 
 - 
 
 -