Uses of Class
org.apache.xml.dtm.DTMAxisTraverser

Packages that use DTMAxisTraverser
org.apache.xalan.lib.sql Provides extension functions for connecting to a JDBC data source, executing a query, and working incrementally through a "streamable" result set. 
org.apache.xalan.xsltc.dom   
org.apache.xml.dtm   
org.apache.xml.dtm.ref   
org.apache.xpath.axes Implementation of XPath LocationPath support -- primary classes are LocPathIterator and UnionPathIterator. 
 

Uses of DTMAxisTraverser in org.apache.xalan.lib.sql
 

Methods in org.apache.xalan.lib.sql that return DTMAxisTraverser
 DTMAxisTraverser DTMDocument.getAxisTraverser(int parm1)
           
 

Uses of DTMAxisTraverser in org.apache.xalan.xsltc.dom
 

Methods in org.apache.xalan.xsltc.dom that return DTMAxisTraverser
 DTMAxisTraverser SimpleResultTreeImpl.getAxisTraverser(int axis)
           
 DTMAxisTraverser AdaptiveResultTreeImpl.getAxisTraverser(int axis)
           
 

Uses of DTMAxisTraverser in org.apache.xml.dtm
 

Methods in org.apache.xml.dtm that return DTMAxisTraverser
 DTMAxisTraverser DTM.getAxisTraverser(int axis)
          This returns a stateless "traverser", that can navigate over an XPath axis, though not in document order.
 

Uses of DTMAxisTraverser in org.apache.xml.dtm.ref
 

Subclasses of DTMAxisTraverser in org.apache.xml.dtm.ref
private  class DTMDefaultBaseTraversers.AllFromNodeTraverser
          Implements traversal of the entire subtree, including the root node.
private  class DTMDefaultBaseTraversers.AllFromRootTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.AncestorOrSelfTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.AncestorTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.AttributeTraverser
          Implements traversal of the Attribute access
private  class DTMDefaultBaseTraversers.ChildTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.DescendantFromRootTraverser
          A non-xpath axis, returns all nodes that aren't namespaces or attributes, from but not including the root.
private  class DTMDefaultBaseTraversers.DescendantOrSelfFromRootTraverser
          A non-xpath axis, returns all nodes that aren't namespaces or attributes, from and including the root.
private  class DTMDefaultBaseTraversers.DescendantOrSelfTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.DescendantTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.FollowingSiblingTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.FollowingTraverser
          Implements traversal of the following access, in document order.
private  class DTMDefaultBaseTraversers.IndexedDTMAxisTraverser
          Super class for derived classes that want a convenient way to access the indexing mechanism.
private  class DTMDefaultBaseTraversers.NamespaceDeclsTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.NamespaceTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.ParentTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.PrecedingAndAncestorTraverser
          Implements traversal of the Ancestor and the Preceding axis, in reverse document order.
private  class DTMDefaultBaseTraversers.PrecedingSiblingTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.PrecedingTraverser
          Implements traversal of the Ancestor access, in reverse document order.
private  class DTMDefaultBaseTraversers.RootTraverser
          Implements traversal of the Self axis.
private  class DTMDefaultBaseTraversers.SelfTraverser
          Implements traversal of the Self axis.
 

Fields in org.apache.xml.dtm.ref declared as DTMAxisTraverser
(package private)  DTMAxisTraverser DTMDefaultBaseIterators.FollowingIterator.m_traverser
           
protected  DTMAxisTraverser[] DTMDefaultBase.m_traversers
          Stateless axis traversers, lazely built.
 

Methods in org.apache.xml.dtm.ref that return DTMAxisTraverser
 DTMAxisTraverser DTMDocumentImpl.getAxisTraverser(int axis)
          This returns a stateless "traverser", that can navigate over an XPath axis, though not in document order.
 DTMAxisTraverser DTMDefaultBaseTraversers.getAxisTraverser(int axis)
          This returns a stateless "traverser", that can navigate over an XPath axis, though perhaps not in document order.
 

Uses of DTMAxisTraverser in org.apache.xpath.axes
 

Fields in org.apache.xpath.axes declared as DTMAxisTraverser
protected  DTMAxisTraverser MatchPatternIterator.m_traverser
          The DTM inner traversal class, that corresponds to the super axis.
protected  DTMAxisTraverser DescendantIterator.m_traverser
          The traverser to use to navigate over the descendants.
protected  DTMAxisTraverser ChildTestIterator.m_traverser
          The traverser to use to navigate over the descendants.
protected  DTMAxisTraverser AxesWalker.m_traverser
          The DTM inner traversal class, that corresponds to the super axis.
 

Constructors in org.apache.xpath.axes with parameters of type DTMAxisTraverser
ChildTestIterator(DTMAxisTraverser traverser)
          Create a ChildTestIterator object.