FileDocCategorySizeDatePackage
XPathVisitable.javaAPI DocJava SE 5 API1430Fri Aug 26 14:56:06 BST 2005com.sun.org.apache.xpath.internal

XPathVisitable

public interface XPathVisitable
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.

Fields Summary
Constructors Summary
Methods Summary
public voidcallVisitors(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.XPathVisitor visitor)
This will traverse the heararchy, calling the visitor for each member. If the called visitor method returns false, the subtree should not be called.

param
owner The owner of the visitor, where that path may be rewritten if needed.
param
visitor The visitor whose appropriate method will be called.