1 12 13 package org.w3c.dom.ls; 14 15 import org.w3c.dom.Node ; 16 import org.w3c.dom.Element ; 17 18 48 public interface LSParserFilter { 49 53 public static final short FILTER_ACCEPT = 1; 54 57 public static final short FILTER_REJECT = 2; 58 62 public static final short FILTER_SKIP = 3; 63 66 public static final short FILTER_INTERRUPT = 4; 67 68 111 public short startElement(Element elementArg); 112 113 155 public short acceptNode(Node nodeArg); 156 157 170 public int getWhatToShow(); 171 172 } 173 | Popular Tags |