public interface NodeVisitor
Modifier and Type | Method and Description |
---|---|
boolean |
visit(Node node)
This visitor method is called for every node in the tree.
|
boolean visit(Node node)
true
the visitation
continues.node
- the node that is currently visitedtrue
if the visitation should continue, false
otherwise