java.lang.Object | +--gnu.xml.dom.DomIteratorAll Implemented Interfaces:
DomIterator(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion) Constructs and initializes an iterator. |
void | detach() DOM L2 Flags the iterator as done, unregistering its event listener so that the iterator can be garbage collected without relying on weak references (a "Java 2" feature) in the event subsystem. |
boolean | DOM L2 Returns the flag controlling whether iteration descends through entity references. |
NodeFilter | DOM L2 Returns the filter provided during construction. |
getRoot() DOM L2 Returns the root of the tree this is iterating through. | |
int | DOM L2 Returns the mask of flags provided during construction. |
void | handleEvent(Event e) Not for public use. |
nextNode() DOM L2 Returns the next node in a forward iteration, masked and filtered. | |
DOM L2 Returns the next node in a backward iteration, masked and filtered. |
protected DomIterator(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion)
public void detach()
public boolean getExpandEntityReferences()
public NodeFilter getFilter()
public Node getRoot()
public int getWhatToShow()
public void handleEvent(Event e)
public Node nextNode()
public Node previousNode()