Package org.benf.cfr.reader.util.graph
Interface GraphVisitor<T>
-
- All Known Implementing Classes:
AbstractGraphVisitorFI
,GraphVisitorDFS
,GraphVisitorFIFO
public interface GraphVisitor<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
abort()
void
enqueue(java.util.Collection<? extends T> next)
void
enqueue(T next)
java.util.Collection<T>
getVisitedNodes()
void
process()
boolean
wasAborted()
-