Package org.jboss.util.graph
Interface VisitorEX<T,E extends java.lang.Exception>
-
- Type Parameters:
T
-E
-
public interface VisitorEX<T,E extends java.lang.Exception>
A graph visitor interface that can throw an exception during a visit callback.- Version:
- $Revision$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visit(Graph<T> g, Vertex<T> v)
Called by the graph traversal methods when a vertex is first visited.
-