public class PatternThatSetsCurrent extends Pattern
Constructor and Description |
---|
PatternThatSetsCurrent(Pattern wrappedPattern) |
Modifier and Type | Method and Description |
---|---|
int |
allocateSlots(SlotManager slotManager,
int nextFree)
Allocate slots to any variables used within the pattern
|
Pattern |
analyze(ExpressionVisitor visitor,
ExpressionVisitor.ContextItemType contextItemType)
Type-check the pattern.
|
Binding |
getCurrentBinding()
Get the binding of the item being matched by the pattern, that is, the binding that
represents the value of the current() function
|
double |
getDefaultPriority()
Determine the default priority to use if this pattern appears as a match pattern
for a template with no explicit priority attribute.
|
int |
getFingerprint()
Determine the name fingerprint of nodes to which this pattern applies.
|
int |
getHostLanguage()
Get the host language (XSLT, XQuery, XPath) used to implement the code in this container
|
ItemType |
getItemType()
Get an ItemType that all the items matching this pattern must satisfy
|
int |
getNodeKind()
Determine the types of nodes to which this pattern applies.
|
boolean |
isMotionless(boolean allowExtensions)
Test whether a pattern is motionless, that is, whether it can be evaluated against a node
without repositioning the input stream.
|
Iterator<Expression> |
iterateSubExpressions()
Iterate over the subexpressions within this pattern
|
boolean |
matches(Item item,
XPathContext context)
Determine whether this Pattern matches the given item.
|
boolean |
matchesBeneathAnchor(NodeInfo node,
NodeInfo anchor,
XPathContext context)
Determine whether this pattern matches a given Node within the subtree rooted at a given
anchor node.
|
boolean |
replaceSubExpression(Expression original,
Expression replacement)
Replace a subexpression by a replacement subexpression
|
Pattern |
simplify(ExpressionVisitor visitor)
Simplify the pattern by applying any context-independent optimisations.
|
String |
toString()
Get the original pattern text
|
bindCurrent, getColumnNumber, getContainerGranularity, getDependencies, getExecutable, getLineNumber, getLocationProvider, getPublicId, getSystemId, make, promote, replaceCurrent, selectNodes, setExecutable, setLineNumber, setOriginalText, setSystemId
public PatternThatSetsCurrent(Pattern wrappedPattern)
public Binding getCurrentBinding()
public int allocateSlots(SlotManager slotManager, int nextFree)
allocateSlots
in class Pattern
slotManager
- the slot manager representing the stack frame for local variablesnextFree
- the next slot that is free to be allocatedpublic Iterator<Expression> iterateSubExpressions()
iterateSubExpressions
in class Pattern
public boolean matches(Item item, XPathContext context) throws XPathException
matches
in class Pattern
item
- The item to be tested against the Patterncontext
- The dynamic context. Only relevant if the pattern
uses variables, or contains calls on functions such as document() or key().XPathException
- if an error occurs while matching the pattern (the caller will usually
treat this the same as a false result)public ItemType getItemType()
getItemType
in class Pattern
public Pattern simplify(ExpressionVisitor visitor) throws XPathException
simplify
in class Pattern
visitor
- the expression visitorXPathException
public Pattern analyze(ExpressionVisitor visitor, ExpressionVisitor.ContextItemType contextItemType) throws XPathException
analyze
in class Pattern
visitor
- the expression visitorcontextItemType
- the type of the context item at the point where the pattern
is defined. Set to null if it is known that the context item is undefined.XPathException
public int getNodeKind()
getNodeKind
in class Pattern
public int getFingerprint()
getFingerprint
in class Pattern
public double getDefaultPriority()
getDefaultPriority
in class Pattern
public String toString()
public int getHostLanguage()
getHostLanguage
in interface Container
getHostLanguage
in class Pattern
Configuration.XSLT
or Configuration.XQUERY
public boolean replaceSubExpression(Expression original, Expression replacement)
replaceSubExpression
in class Pattern
original
- the expression to be replacedreplacement
- the new expression to be inserted in its placepublic boolean isMotionless(boolean allowExtensions)
isMotionless
in class Pattern
allowExtensions
- if false, the result is determined strictly according to the W3C
"guaranteed streamability rules. If true, Saxon extensions are permitted: that is, constructs
may be recognized as motionless by Saxon even if they are not recognized as motionless by
the W3C rules.public boolean matchesBeneathAnchor(NodeInfo node, NodeInfo anchor, XPathContext context) throws XPathException
matchesBeneathAnchor
in class Pattern
node
- The NodeInfo representing the Element or other node to be tested against the Patternanchor
- The anchor node, which must match any AnchorPattern subpatterncontext
- The dynamic context. Only relevant if the pattern
uses variables, or contains calls on functions such as document() or key().XPathException
- if an error occurs while matching the pattern (the caller will usually
treat this the same as a false result)Copyright (c) 2004-2013 Saxonica Limited. All rights reserved.