Xerces 1.0.0

org.apache.xerces.domx.traversal
Interface TreeWalker

All Known Implementing Classes:
TreeWalkerImpl

public interface TreeWalker

This interface is the W3C DOM Level 2 candidate, which if accepted will likely exist in the package: org.w3c.dom.traversal


Method Summary
 Node firstChild()
           
 Node getCurrentNode()
           
 boolean getExpandEntityReferences()
           
 NodeFilter getFilter()
           
 int getWhatToShow()
           
 Node lastChild()
           
 Node nextNode()
           
 Node nextSibling()
           
 Node parentNode()
           
 Node previousNode()
           
 Node previousSibling()
           
 void setCurrentNode(Node currentNode)
           
 

Method Detail

getWhatToShow

public int getWhatToShow()

getFilter

public NodeFilter getFilter()

getExpandEntityReferences

public boolean getExpandEntityReferences()

getCurrentNode

public Node getCurrentNode()

setCurrentNode

public void setCurrentNode(Node currentNode)

parentNode

public Node parentNode()

firstChild

public Node firstChild()

lastChild

public Node lastChild()

previousSibling

public Node previousSibling()

nextSibling

public Node nextSibling()

previousNode

public Node previousNode()

nextNode

public Node nextNode()

Xerces 1.0.0