Uses of Class
jd.xml.xpath.expr.NodeSetExpression

Packages that use NodeSetExpression
jd.xml.xpath.expr.function Contains the XPath functions. 
jd.xml.xpath.expr.operator Contains classes representing various XPath operators. 
jd.xml.xpath.expr.path   
jd.xml.xslt.expr Contains the XPath functions and expressions defined by XSLT. 
jd.xml.xslt.template Contains classes representing the various XSLT template elements and instructions. 
 

Uses of NodeSetExpression in jd.xml.xpath.expr.function
 

Subclasses of NodeSetExpression in jd.xml.xpath.expr.function
 class Id
          Id represents the xpath core function "node-set id(object)".
 class NodeSetFunction
          A base class for all functions which evaluates to a node-set.
 

Uses of NodeSetExpression in jd.xml.xpath.expr.operator
 

Subclasses of NodeSetExpression in jd.xml.xpath.expr.operator
 class NodeSetOperator
          NodeSetOperator is a base class for operations that take two node-set expression arguments and return a node-set.
 class Union
          Union represents the '|' expression.
 

Uses of NodeSetExpression in jd.xml.xpath.expr.path
 

Subclasses of NodeSetExpression in jd.xml.xpath.expr.path
 class ComposedPath
          ComposedPath is an expression for the production rule "FilterExpr '/' RelativeLocationPath".
 class FilteredLocationStep
          A FilteredLocationStep is a LocationStep with a simple filter predicate that uses axis iterators for evaluation and is therefore faster than a heavyweight PredicateExpression.
 class LocationStep
          An expression class to represent XPath location steps with and without predicate filters.
 class LocationStepChain
          A LocationStepChain is a sequence of single location steps, chained together by the '/' operator.
 class PredicateExpression
          PredicateExpression represents a predicate that filters a nodeset resulting from another expression.
 class RootPath
          The RootPath represents the path expression "/".
 class SimpleLocationStep
          An LocationStep without predicate filters-
 

Uses of NodeSetExpression in jd.xml.xslt.expr
 

Subclasses of NodeSetExpression in jd.xml.xslt.expr
 class Current
          Current represents the xslt function "node-set current()".
 class DocumentFunction
          Document represents the xslt function "node-set document(object, node-set?)".
 class KeyFunction
          Document represents the xslt function "node-set key(string, object)".
 class TextContentExpression
          A NodeSet constructed by the template of a variable binding element.
 

Uses of NodeSetExpression in jd.xml.xslt.template
 

Constructors in jd.xml.xslt.template with parameters of type NodeSetExpression
ApplyTemplatesIterated(TemplateRuleList rules, NodeSetExpression select, Variable[] params)
          Create a new ApplyTemplates object.