Methods Summary |
---|
public boolean | visitBinaryOperation(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.operations.Operation op)Visit a binary operation.
return true;
|
public boolean | visitFunction(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.functions.Function func)Visit a function.
return true;
|
public boolean | visitLocationPath(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.axes.LocPathIterator path)Visit a LocationPath.
return true;
|
public boolean | visitMatchPattern(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.patterns.StepPattern pattern)Visit a match pattern.
return true;
|
public boolean | visitNumberLiteral(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.objects.XNumber num)Visit a number literal.
return true;
|
public boolean | visitPredicate(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.Expression pred)Visit a predicate within a location path. Note that there isn't a
proper unique component for predicates, and that the expression will
be called also for whatever type Expression is.
return true;
|
public boolean | visitStep(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.patterns.NodeTest step)Visit a step within a location path.
return true;
|
public boolean | visitStringLiteral(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.objects.XString str)Visit a string literal.
return true;
|
public boolean | visitUnaryOperation(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.operations.UnaryOperation op)Visit a unary operation.
return true;
|
public boolean | visitUnionPath(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.axes.UnionPathIterator path)Visit a UnionPath.
return true;
|
public boolean | visitUnionPattern(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.patterns.UnionPattern pattern)Visit a union pattern.
return true;
|
public boolean | visitVariableRef(com.sun.org.apache.xpath.internal.ExpressionOwner owner, com.sun.org.apache.xpath.internal.operations.Variable var)Visit a variable reference.
return true;
|