1 12 13 package org.w3c.dom.traversal; 14 15 import org.w3c.dom.Node ; 16 import org.w3c.dom.DOMException ; 17 18 31 public interface NodeIterator { 32 36 public Node getRoot(); 37 38 46 public int getWhatToShow(); 47 48 51 public NodeFilter getFilter(); 52 53 71 public boolean getExpandEntityReferences(); 72 73 84 public Node nextNode() 85 throws DOMException ; 86 87 96 public Node previousNode() 97 throws DOMException ; 98 99 107 public void detach(); 108 109 } 110 | Popular Tags |