Uses of Class
jd.xml.xpath.axis.NodeTypeTest

Packages that use NodeTypeTest
jd.xml.xpath.axis Contains classes that implement the path expressions. 
jd.xml.xpath.axis.type Contains implementations for NodeTypeTest. 
jd.xml.xslt.pattern Contains classes for XSLT template patterns. 
 

Uses of NodeTypeTest in jd.xml.xpath.axis
 

Fields in jd.xml.xpath.axis declared as NodeTypeTest
static NodeTypeTest NodeTypeTest.ALL
          The NodeTypeTest "*".
static NodeTypeTest NodeTypeTest.TEXT
          The NodeTypeTest "text()".
static NodeTypeTest NodeTypeTest.COMMENT
          The NodeTypeTest "comment()".
static NodeTypeTest NodeTypeTest.PI
          The NodeTypeTest "processing-instruction()".
 

Methods in jd.xml.xpath.axis that return NodeTypeTest
static NodeTypeTest NodeTypeTest.getTest(String name, String parameter)
          Create a NodeTypeTest.
 

Methods in jd.xml.xpath.axis with parameters of type NodeTypeTest
 void NodeTestVisitor.testNodeType(NodeTypeTest test, String parameter)
          Called by a visited NodeTypeTest.
 

Uses of NodeTypeTest in jd.xml.xpath.axis.type
 

Subclasses of NodeTypeTest in jd.xml.xpath.axis.type
 class AllNodeTypeTest
          Implements the node-test "node()".
 class PiNodeTypeTest
          Implements the node-test "processing-instruction(string)".
 class SingleNodeTypeTest
          Implements the node-tests "text()", "comment()" and "processing-instruction()".
 

Uses of NodeTypeTest in jd.xml.xslt.pattern
 

Subclasses of NodeTypeTest in jd.xml.xslt.pattern
 class NodeTypeAllTest
          Implements the node-test "node()" for patterns.
 

Methods in jd.xml.xslt.pattern with parameters of type NodeTypeTest
 void PatternClassifier.testNodeType(NodeTypeTest test, String parameter)