Package com.levigo.jadice.server.util
Interface NodeVisitor<T extends Throwable>
-
- Type Parameters:
T
- The Exception type the visitor might throw. UseRuntimeException
if no checked exception will be thrown
public interface NodeVisitor<T extends Throwable>
A NodeVisitor may consume a "flattened" version of the node graph.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visit(Node node)
Called if theNodeTraversal
consumed anotherNode
of the node graph.
-