| org.apache.xpath.XPathVisitable
All known Subclasses: org.apache.xpath.Expression,
XPathVisitable | public interface XPathVisitable (Code) | | A class that implements this interface will call a XPathVisitor
for itself and members within it's heararchy. If the XPathVisitor's
method returns false, the sub-member heararchy will not be
traversed.
|
callVisitors | public void callVisitors(ExpressionOwner owner, XPathVisitor visitor)(Code) | | This will traverse the heararchy, calling the visitor for
each member. If the called visitor method returns
false, the subtree should not be called.
Parameters: owner - The owner of the visitor, where that path may be rewritten if needed. Parameters: visitor - The visitor whose appropriate method will be called. |
|
|