Package com.icl.saxon.pattern
Class AnyChildNodePattern
java.lang.Object
com.icl.saxon.pattern.Pattern
com.icl.saxon.pattern.NodeTest
com.icl.saxon.pattern.AnyChildNodePattern
An AnyChildNodePattern is the pattern node(), which matches any node except a root node,
an attribute node, or a namespace node: in other words, any node that is the child of another
node.
-
Field Summary
Fields inherited from class com.icl.saxon.pattern.Pattern
originalText, staticContext
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondouble
Determine the default priority to use if this pattern appears as a match pattern for a template with no explicit priority attribute.short
Determine the type of nodes to which this pattern applies.boolean
matches
(short nodeType, int fingerprint) Test whether this node test is satisfied by a given nodeboolean
Determine whether the pattern matches a given node.Methods inherited from class com.icl.saxon.pattern.Pattern
getFingerprint, getLineNumber, getStaticContext, getSystemId, make, setOriginalText, setStaticContext, simplify, toString
-
Constructor Details
-
AnyChildNodePattern
public AnyChildNodePattern()
-
-
Method Details
-
matches
Determine whether the pattern matches a given node. -
matches
public boolean matches(short nodeType, int fingerprint) Test whether this node test is satisfied by a given node -
getNodeType
public short getNodeType()Determine the type of nodes to which this pattern applies.- Overrides:
getNodeType
in classPattern
- Returns:
- the node type
-
getDefaultPriority
public double getDefaultPriority()Determine the default priority to use if this pattern appears as a match pattern for a template with no explicit priority attribute.- Overrides:
getDefaultPriority
in classPattern
-