wt.visitor
Class DFSNavigator

java.lang.Object
  extended bywt.visitor.BasicWalker
      extended bywt.visitor.Navigator
          extended bywt.visitor.DFSWalker
              extended bywt.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


Field Summary
private static String CLASSNAME
          Deprecated.  
private static String RESOURCE
          Deprecated.  
 
Fields inherited from class wt.visitor.BasicWalker
 
Fields inherited from interface wt.visitor.Walker
NODE_EXPANDER, VISITOR
 
Constructor Summary
DFSNavigator()
          Deprecated.  
 
Methods inherited from class wt.visitor.DFSWalker
traverse
 
Methods inherited from class wt.visitor.BasicWalker
clearVisitedNodes, getNodeExpander, getVisitor, isRecursionDetectionEnabled, registerVisitedNode, setNodeExpander, setRecursionDetectionEnabled, setVisitor
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

RESOURCE

private static final String RESOURCE
Deprecated. 
See Also:
Constant Field Values

CLASSNAME

private static final String CLASSNAME
Deprecated. 
Constructor Detail

DFSNavigator

public DFSNavigator()
Deprecated.