wt.visitor
Class DFSNavigator
java.lang.Object
wt.visitor.BasicWalker
wt.visitor.Navigator
wt.visitor.DFSWalker
wt.visitor.DFSNavigator
- All Implemented Interfaces:
- Walker
Deprecated. Use wt.visitor.DFSWalker
- public final class DFSNavigator
- extends DFSWalker
This class extends Navigator to implement a depth-first navigation of
a structure. As each node is traversed, the visit methods are called
on the Visitor object, the node is expanded, and the traverse method
is called recursively on all of the expanded nodes. Note that during
this depth first navigation, the parent nodes are always visited before
the children nodes.
Supported API: false
Extendable: false
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
RESOURCE
private static final String RESOURCE
- Deprecated.
- See Also:
- Constant Field Values
CLASSNAME
private static final String CLASSNAME
- Deprecated.
DFSNavigator
public DFSNavigator()
- Deprecated.