Uses of Class
org.jaxen.ContextSupport
-
Packages that use ContextSupport Package Description org.jaxen This package defines the core Jaxen API to the XPath engine.org.jaxen.expr Interfaces and default implementations for XPath expression components.org.jaxen.expr.iter Axis iterator creation functors. -
-
Uses of ContextSupport in org.jaxen
Methods in org.jaxen that return ContextSupport Modifier and Type Method Description protected ContextSupport
BaseXPath. getContextSupport()
Retrieve theContextSupport
aggregation ofNamespaceContext
,FunctionContext
,VariableContext
, andNavigator
.ContextSupport
Context. getContextSupport()
Retrieve theContextSupport
.Methods in org.jaxen with parameters of type ContextSupport Modifier and Type Method Description void
Context. setContextSupport(ContextSupport contextSupport)
Set theContextSupport
.Constructors in org.jaxen with parameters of type ContextSupport Constructor Description Context(ContextSupport contextSupport)
Create a new context. -
Uses of ContextSupport in org.jaxen.expr
Methods in org.jaxen.expr with parameters of type ContextSupport Modifier and Type Method Description java.util.List
PredicateSet. applyPredicate(Predicate predicate, java.util.List nodes2Filter, ContextSupport support)
java.util.Iterator
DefaultStep. axisIterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
Step. axisIterator(java.lang.Object contextNode, ContextSupport support)
Get an Iterator for the current axis starting in the given contextNode.protected boolean
PredicateSet. evaluateAsBoolean(java.util.List contextNodeSet, ContextSupport support)
Returns true if any of the supplied nodes satisfy all the predicates in the set.protected java.util.List
PredicateSet. evaluatePredicates(java.util.List contextNodeSet, ContextSupport support)
Returns all of the supplied nodes that satisfy all the predicates in the set.boolean
DefaultAllNodeStep. matches(java.lang.Object node, ContextSupport contextSupport)
boolean
DefaultCommentNodeStep. matches(java.lang.Object node, ContextSupport contextSupport)
boolean
DefaultNameStep. matches(java.lang.Object node, ContextSupport contextSupport)
Checks whether the node matches this step.boolean
DefaultProcessingInstructionNodeStep. matches(java.lang.Object node, ContextSupport support)
boolean
DefaultTextNodeStep. matches(java.lang.Object node, ContextSupport support)
boolean
Step. matches(java.lang.Object node, ContextSupport contextSupport)
Performs the node-test part of evaluating the step for the given node (which must be on the axis). -
Uses of ContextSupport in org.jaxen.expr.iter
Methods in org.jaxen.expr.iter with parameters of type ContextSupport Modifier and Type Method Description java.util.Iterator
IterableAncestorAxis. iterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
IterableAncestorOrSelfAxis. iterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
IterableAttributeAxis. iterator(java.lang.Object contextNode, ContextSupport support)
Gets an iterator for the attribute axis.abstract java.util.Iterator
IterableAxis. iterator(java.lang.Object contextNode, ContextSupport support)
Gets the iterator for a specific XPath axis.java.util.Iterator
IterableChildAxis. iterator(java.lang.Object contextNode, ContextSupport support)
Gets the iterator for the child axis.java.util.Iterator
IterableDescendantAxis. iterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
IterableDescendantOrSelfAxis. iterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
IterableFollowingAxis. iterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
IterableFollowingSiblingAxis. iterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
IterableNamespaceAxis. iterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
IterableParentAxis. iterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
IterablePrecedingAxis. iterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
IterablePrecedingSiblingAxis. iterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
IterableSelfAxis. iterator(java.lang.Object contextNode, ContextSupport support)
java.util.Iterator
IterableAttributeAxis. namedAccessIterator(java.lang.Object contextNode, ContextSupport support, java.lang.String localName, java.lang.String namespacePrefix, java.lang.String namespaceURI)
Gets the iterator for the attribute axis that supports named access.java.util.Iterator
IterableAxis. namedAccessIterator(java.lang.Object contextNode, ContextSupport support, java.lang.String localName, java.lang.String namespacePrefix, java.lang.String namespaceURI)
Gets the iterator for a specific XPath axis that supports named access.java.util.Iterator
IterableChildAxis. namedAccessIterator(java.lang.Object contextNode, ContextSupport support, java.lang.String localName, java.lang.String namespacePrefix, java.lang.String namespaceURI)
Gets an iterator for the child XPath axis that supports named access.boolean
IterableAttributeAxis. supportsNamedAccess(ContextSupport support)
Does this axis support named access?boolean
IterableAxis. supportsNamedAccess(ContextSupport support)
Does this axis support named access?boolean
IterableChildAxis. supportsNamedAccess(ContextSupport support)
Does this axis support named access?
-