org.apache.xerces.dom
Class TreeWalkerImpl
java.lang.Object
org.apache.xerces.dom.TreeWalkerImpl
- org.w3c.dom.traversal.TreeWalker
public class TreeWalkerImpl
extends java.lang.Object
implements org.w3c.dom.traversal.TreeWalker
This class implements the TreeWalker interface.
$Id: TreeWalkerImpl.java 371588 2006-01-23 16:42:23Z mrglavas $TreeWalkerImpl(org.w3c.dom.Node root, int whatToShow, org.w3c.dom.traversal.NodeFilter nodeFilter, boolean entityReferenceExpansion) - Public constructor
|
org.w3c.dom.Node | firstChild() - Return the first child Node from the current node,
after applying filter, whatToshow.
|
org.w3c.dom.Node | getCurrentNode() - Return the current Node.
|
boolean | getExpandEntityReferences() - Return whether children entity references are included in the iterator.
|
org.w3c.dom.traversal.NodeFilter | getFilter() - Return the NodeFilter
|
org.w3c.dom.Node | getRoot()
|
int | getWhatToShow() - Return the whatToShow value
|
org.w3c.dom.Node | lastChild() - Return the last child Node from the current node,
after applying filter, whatToshow.
|
org.w3c.dom.Node | nextNode() - Return the next Node from the current node,
after applying filter, whatToshow.
|
org.w3c.dom.Node | nextSibling() - Return the next sibling Node from the current node,
after applying filter, whatToshow.
|
org.w3c.dom.Node | parentNode() - Return the parent Node from the current node,
after applying filter, whatToshow.
|
org.w3c.dom.Node | previousNode() - Return the previous Node from the current node,
after applying filter, whatToshow.
|
org.w3c.dom.Node | previousSibling() - Return the previous sibling Node from the current node,
after applying filter, whatToshow.
|
void | setCurrentNode(org.w3c.dom.Node node) - Return the current Node.
|
void | setWhatShow(int whatToShow)
|
TreeWalkerImpl
public TreeWalkerImpl(org.w3c.dom.Node root,
int whatToShow,
org.w3c.dom.traversal.NodeFilter nodeFilter,
boolean entityReferenceExpansion)
Public constructor
firstChild
public org.w3c.dom.Node firstChild()
Return the first child Node from the current node,
after applying filter, whatToshow.
If result is not null, set the current Node.
- firstChild in interface org.w3c.dom.traversal.TreeWalker
getCurrentNode
public org.w3c.dom.Node getCurrentNode()
Return the current Node.
- getCurrentNode in interface org.w3c.dom.traversal.TreeWalker
getExpandEntityReferences
public boolean getExpandEntityReferences()
Return whether children entity references are included in the iterator.
- getExpandEntityReferences in interface org.w3c.dom.traversal.TreeWalker
getFilter
public org.w3c.dom.traversal.NodeFilter getFilter()
Return the NodeFilter
- getFilter in interface org.w3c.dom.traversal.TreeWalker
getRoot
public org.w3c.dom.Node getRoot()
- getRoot in interface org.w3c.dom.traversal.TreeWalker
getWhatToShow
public int getWhatToShow()
Return the whatToShow value
- getWhatToShow in interface org.w3c.dom.traversal.TreeWalker
lastChild
public org.w3c.dom.Node lastChild()
Return the last child Node from the current node,
after applying filter, whatToshow.
If result is not null, set the current Node.
- lastChild in interface org.w3c.dom.traversal.TreeWalker
nextNode
public org.w3c.dom.Node nextNode()
Return the next Node from the current node,
after applying filter, whatToshow.
If result is not null, set the current Node.
- nextNode in interface org.w3c.dom.traversal.TreeWalker
nextSibling
public org.w3c.dom.Node nextSibling()
Return the next sibling Node from the current node,
after applying filter, whatToshow.
If result is not null, set the current Node.
- nextSibling in interface org.w3c.dom.traversal.TreeWalker
parentNode
public org.w3c.dom.Node parentNode()
Return the parent Node from the current node,
after applying filter, whatToshow.
If result is not null, set the current Node.
- parentNode in interface org.w3c.dom.traversal.TreeWalker
previousNode
public org.w3c.dom.Node previousNode()
Return the previous Node from the current node,
after applying filter, whatToshow.
If result is not null, set the current Node.
- previousNode in interface org.w3c.dom.traversal.TreeWalker
previousSibling
public org.w3c.dom.Node previousSibling()
Return the previous sibling Node from the current node,
after applying filter, whatToshow.
If result is not null, set the current Node.
- previousSibling in interface org.w3c.dom.traversal.TreeWalker
setCurrentNode
public void setCurrentNode(org.w3c.dom.Node node)
Return the current Node.
- setCurrentNode in interface org.w3c.dom.traversal.TreeWalker
setWhatShow
public void setWhatShow(int whatToShow)
Copyright B) 1999-2006 The Apache Software Foundation. All Rights Reserved.