Uses of Class
org.jaxen.ContextSupport

Packages that use ContextSupport
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
 

Fields in org.jaxen declared as ContextSupport
private  ContextSupport Context.contextSupport
          Context-support
private  ContextSupport BaseXPath.support
          the support information and function, namespace and variable contexts
 

Methods in org.jaxen that return ContextSupport
protected  ContextSupport BaseXPath.getContextSupport()
          Retrieve the ContextSupport aggregation of NamespaceContext, FunctionContext, VariableContext, and Navigator.
 ContextSupport Context.getContextSupport()
          Retrieve the ContextSupport.
 

Methods in org.jaxen with parameters of type ContextSupport
 void Context.setContextSupport(ContextSupport contextSupport)
          Set the ContextSupport.
 

Constructors in org.jaxen with parameters of type ContextSupport
Context(ContextSupport contextSupport)
          Create a new context.
 

Uses of ContextSupport in org.jaxen.expr
 

Methods in org.jaxen.expr with parameters of type ContextSupport
private  boolean PredicateSet.anyMatchingNode(java.util.List contextNodeSet, ContextSupport support)
           
 java.util.List PredicateSet.applyPredicate(Predicate predicate, java.util.List nodes2Filter, ContextSupport support)
           
 java.util.Iterator DefaultStep.axisIterator(java.lang.Object contextNode, ContextSupport support)
          Deprecated.  
 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 DefaultTextNodeStep.matches(java.lang.Object node, ContextSupport support)
          Deprecated.  
 boolean DefaultCommentNodeStep.matches(java.lang.Object node, ContextSupport contextSupport)
          Deprecated.  
 boolean DefaultProcessingInstructionNodeStep.matches(java.lang.Object node, ContextSupport support)
          Deprecated.  
 boolean DefaultAllNodeStep.matches(java.lang.Object node, ContextSupport contextSupport)
          Deprecated.  
 boolean DefaultNameStep.matches(java.lang.Object node, ContextSupport contextSupport)
          Deprecated. Checks whether the node matches this step.
 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
 java.util.Iterator IterableAncestorOrSelfAxis.iterator(java.lang.Object contextNode, ContextSupport support)
           
 java.util.Iterator IterableDescendantOrSelfAxis.iterator(java.lang.Object contextNode, ContextSupport support)
           
 java.util.Iterator IterableFollowingSiblingAxis.iterator(java.lang.Object contextNode, ContextSupport support)
           
 java.util.Iterator IterableAncestorAxis.iterator(java.lang.Object contextNode, ContextSupport support)
           
 java.util.Iterator IterableSelfAxis.iterator(java.lang.Object contextNode, ContextSupport support)
           
abstract  java.util.Iterator IterableAxis.iterator(java.lang.Object contextNode, ContextSupport support)
          Gets the iterator for a specific XPath axis.
 java.util.Iterator IterableDescendantAxis.iterator(java.lang.Object contextNode, ContextSupport support)
           
 java.util.Iterator IterableChildAxis.iterator(java.lang.Object contextNode, ContextSupport support)
          Gets the iterator for the child axis.
 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 IterableNamespaceAxis.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.
 java.util.Iterator IterablePrecedingSiblingAxis.iterator(java.lang.Object contextNode, ContextSupport support)
           
 java.util.Iterator IterableFollowingAxis.iterator(java.lang.Object contextNode, ContextSupport support)
           
 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.
 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.
 boolean IterableAxis.supportsNamedAccess(ContextSupport support)
          Does this axis support named access?
 boolean IterableChildAxis.supportsNamedAccess(ContextSupport support)
          Does this axis support named access?
 boolean IterableAttributeAxis.supportsNamedAccess(ContextSupport support)
          Does this axis support named access?