Uses of Class
org.apache.commons.jxpath.ri.compiler.NodeTest

Packages that use NodeTest
org.apache.commons.jxpath.ri.axes Implementations of EvalContext used for different XPath axes (child::, parent:: etc). 
org.apache.commons.jxpath.ri.compiler XPath parse tree. 
org.apache.commons.jxpath.ri.model The "model" package defines APIs that are implemented for every object model to be supported by JXPath. 
org.apache.commons.jxpath.ri.model.beans Implementation of "model" APIs for JavaBeans, Dynamic Property Objects, collections and null. 
org.apache.commons.jxpath.ri.model.container Implementation of "model" APIs for Containers. 
org.apache.commons.jxpath.ri.model.dom Implementation of "model" APIs for W3C DOM. 
org.apache.commons.jxpath.ri.model.jdom Implementation of "model" APIs for JDOM (see jdom.org). 
 

Uses of NodeTest in org.apache.commons.jxpath.ri.axes
 

Constructors in org.apache.commons.jxpath.ri.axes with parameters of type NodeTest
ChildContext(EvalContext parentContext, NodeTest nodeTest, boolean startFromParentLocation, boolean reverse)
           
NamespaceContext(EvalContext parentContext, NodeTest nodeTest)
           
AncestorContext(EvalContext parentContext, boolean includeSelf, NodeTest nodeTest)
           
ParentContext(EvalContext parentContext, NodeTest nodeTest)
           
PrecedingOrFollowingContext(EvalContext parentContext, NodeTest nodeTest, boolean reverse)
           
SelfContext(EvalContext parentContext, NodeTest nodeTest)
           
AttributeContext(EvalContext parentContext, NodeTest nodeTest)
           
DescendantContext(EvalContext parentContext, boolean includeSelf, NodeTest nodeTest)
           
 

Uses of NodeTest in org.apache.commons.jxpath.ri.compiler
 

Subclasses of NodeTest in org.apache.commons.jxpath.ri.compiler
 class NodeNameTest
           
 class NodeTypeTest
           
 class ProcessingInstructionTest
           
 

Methods in org.apache.commons.jxpath.ri.compiler that return NodeTest
 NodeTest Step.getNodeTest()
           
 

Methods in org.apache.commons.jxpath.ri.compiler with parameters of type NodeTest
protected  EvalContext Path.createContextForStep(EvalContext context, int axis, NodeTest nodeTest)
          Different axes are serviced by different contexts.
 

Constructors in org.apache.commons.jxpath.ri.compiler with parameters of type NodeTest
Step(int axis, NodeTest nodeTest, Expression[] predicates)
           
 

Uses of NodeTest in org.apache.commons.jxpath.ri.model
 

Methods in org.apache.commons.jxpath.ri.model with parameters of type NodeTest
 boolean NodePointer.testNode(NodeTest test)
          Checks if this Pointer matches the supplied NodeTest.
 NodeIterator NodePointer.childIterator(NodeTest test, boolean reverse, NodePointer startWith)
          Returns a NodeIterator that iterates over all children or all children that match the given NodeTest, starting with the specified one.
 NodeIterator VariablePointer.childIterator(NodeTest test, boolean reverse, NodePointer startWith)
           
 boolean VariablePointer.testNode(NodeTest nodeTest)
           
 

Uses of NodeTest in org.apache.commons.jxpath.ri.model.beans
 

Methods in org.apache.commons.jxpath.ri.model.beans with parameters of type NodeTest
 NodeIterator PropertyOwnerPointer.childIterator(NodeTest test, boolean reverse, NodePointer startWith)
           
 NodeIterator CollectionPointer.childIterator(NodeTest test, boolean reverse, NodePointer startWith)
           
 boolean CollectionPointer.testNode(NodeTest nodeTest)
           
 boolean LangAttributePointer.testNode(NodeTest test)
           
 

Uses of NodeTest in org.apache.commons.jxpath.ri.model.container
 

Methods in org.apache.commons.jxpath.ri.model.container with parameters of type NodeTest
 NodeIterator ContainerPointer.childIterator(NodeTest test, boolean reverse, NodePointer startWith)
           
 boolean ContainerPointer.testNode(NodeTest nodeTest)
           
 

Uses of NodeTest in org.apache.commons.jxpath.ri.model.dom
 

Methods in org.apache.commons.jxpath.ri.model.dom with parameters of type NodeTest
 boolean DOMNodePointer.testNode(NodeTest test)
           
static boolean DOMNodePointer.testNode(NodePointer pointer, org.w3c.dom.Node node, NodeTest test)
           
 NodeIterator DOMNodePointer.childIterator(NodeTest test, boolean reverse, NodePointer startWith)
           
 boolean DOMAttributePointer.testNode(NodeTest nodeTest)
           
 boolean NamespacePointer.testNode(NodeTest nodeTest)
           
 

Constructors in org.apache.commons.jxpath.ri.model.dom with parameters of type NodeTest
DOMNodeIterator(NodePointer parent, NodeTest nodeTest, boolean reverse, NodePointer startWith)
           
 

Uses of NodeTest in org.apache.commons.jxpath.ri.model.jdom
 

Methods in org.apache.commons.jxpath.ri.model.jdom with parameters of type NodeTest
 NodeIterator JDOMNodePointer.childIterator(NodeTest test, boolean reverse, NodePointer startWith)
           
 boolean JDOMNodePointer.testNode(NodeTest test)
           
static boolean JDOMNodePointer.testNode(NodePointer pointer, java.lang.Object node, NodeTest test)
           
 

Constructors in org.apache.commons.jxpath.ri.model.jdom with parameters of type NodeTest
JDOMNodeIterator(NodePointer parent, NodeTest nodeTest, boolean reverse, NodePointer startWith)
           
 



Copyright © 2001-2003 Apache Software Foundation. All Rights Reserved.