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 BaseXPath.support
          the support information and function, namespace and variable contexts
private  ContextSupport Context.contextSupport
          Context-support.
 

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)
          Construct.
 

Uses of ContextSupport in org.jaxen.expr
 

Methods in org.jaxen.expr with parameters of type ContextSupport
 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).
 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)
           
protected  java.util.List PredicateSet.evaluatePredicates(java.util.List contextNodeSet, ContextSupport support)
           
 java.util.List PredicateSet.applyPredicate(Predicate predicate, java.util.List nodes2Filter, ContextSupport support)
           
 boolean DefaultAllNodeStep.matches(java.lang.Object node, ContextSupport contextSupport)
           
 java.util.Iterator DefaultStep.axisIterator(java.lang.Object contextNode, ContextSupport support)
           
 boolean DefaultCommentNodeStep.matches(java.lang.Object node, ContextSupport contextSupport)
           
 boolean DefaultNameStep.matches(java.lang.Object node, ContextSupport contextSupport)
           
 boolean DefaultProcessingInstructionNodeStep.matches(java.lang.Object node, ContextSupport support)
           
 boolean DefaultTextNodeStep.matches(java.lang.Object node, ContextSupport support)
           
 

Uses of ContextSupport in org.jaxen.expr.iter
 

Methods in org.jaxen.expr.iter with parameters of type ContextSupport
abstract  java.util.Iterator IterableAxis.iterator(java.lang.Object contextNode, ContextSupport support)
           
 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)
           
 java.util.Iterator IterableChildAxis.iterator(java.lang.Object contextNode, ContextSupport support)
           
 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)