public interface INdVisitor
| Modifier and Type | Method and Description |
|---|---|
void |
leave(INdNode node)
All children have been visited, about to go back to the parent.
|
boolean |
visit(INdNode node)
Walk the nodes in a
Nd. |
boolean visit(INdNode node) throws CoreException
Nd. Return true to visit the children of
this node, or false to skip to the next sibling of this node.
Throw CoreException to stop the visit.node - being visitedCoreExceptionvoid leave(INdNode node) throws CoreException
node - that has just completed visitationCoreException