API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.w3c.dom.traversal. DocumentTraversal View Source
Author(s)
Since
DOM Level 2
Version
Serial
Hierarchy
 DocumentTraversal
Subinterfaces
Description
public interface DocumentTraversal
  DocumentTraversal contains methods that create NodeIterators and TreeWalkers to traverse a node and its children in document order (depth first, pre-order traversal, which is equivalent to the order in which the start tags occur in the text representation of the document).
See also:   
Methods
Hide/Show inherited methods
public NodeIterator createNodeIterator (Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion) throws DOMException
  Create a new NodeIterator over the subtree rooted at the specified node.
public TreeWalker createTreeWalker (Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion) throws DOMException
  Create a new TreeWalker over the subtree rooted at the specified node.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar