public class UnionPattern extends Expression
Constructor and Description |
---|
UnionPattern() |
Modifier and Type | Method and Description |
---|---|
void |
callVisitors(ExpressionOwner owner,
XPathVisitor visitor)
This will traverse the heararchy, calling the visitor for
each member.
|
boolean |
canTraverseOutsideSubtree()
Tell if this expression or it's subexpressions can traverse outside
the current subtree.
|
boolean |
deepEquals(Expression expr)
Compare this object with another object and see
if they are equal, include the sub heararchy.
|
XObject |
execute(XPathContext xctxt)
Test a node to see if it matches any of the patterns in the union.
|
void |
fixupVariables(Vector vars,
int globalsSize)
No arguments to process, so this does nothing.
|
StepPattern[] |
getPatterns()
Get the contained step patterns to be tested.
|
void |
setPatterns(StepPattern[] patterns)
Set the contained step patterns to be tested.
|
asIterator, asIteratorRaw, asNode, assertion, bool, error, execute, execute, execute, executeCharsToContentHandler, exprAddChild, exprGetChild, exprGetNumChildren, exprGetParent, exprSetParent, getColumnNumber, getExpressionOwner, getLineNumber, getPublicId, getSystemId, isNodesetExpr, isSameClass, isStableNumber, num, warn, xstr
public void fixupVariables(Vector vars, int globalsSize)
fixupVariables
in class Expression
vars
- List of QNames that correspond to variables. This list
should be searched backwards for the first qualified name that
corresponds to the variable reference qname. The position of the
QName in the vector from the start of the vector will be its position
in the stack frame (but variables above the globalsTop value will need
to be offset to the current stack frame).
NEEDSDOC @param globalsSizepublic boolean canTraverseOutsideSubtree()
canTraverseOutsideSubtree
in class Expression
public void setPatterns(StepPattern[] patterns)
patterns
- the contained step patterns to be tested.public StepPattern[] getPatterns()
public XObject execute(XPathContext xctxt) throws TransformerException
execute
in class Expression
xctxt
- XPath runtime context.NodeTest.SCORE_NODETEST
,
NodeTest.SCORE_NONE
,
NodeTest.SCORE_NSWILD
,
NodeTest.SCORE_QNAME
, or
NodeTest.SCORE_OTHER
.TransformerException
public void callVisitors(ExpressionOwner owner, XPathVisitor visitor)
XPathVisitable
owner
- The owner of the visitor, where that path may be
rewritten if needed.visitor
- The visitor whose appropriate method will be called.XPathVisitable.callVisitors(ExpressionOwner, XPathVisitor)
public boolean deepEquals(Expression expr)
Expression
deepEquals
in class Expression
expr
- Another expression object.Expression.deepEquals(Expression)
Copyright © 2017 JBoss by Red Hat. All rights reserved.