1 57 58 package dom; 59 60 import org.w3c.dom.Document ; 61 import org.xml.sax.SAXNotRecognizedException ; 62 import org.xml.sax.SAXNotSupportedException ; 63 64 public interface DOMParserWrapper { 65 66 70 71 public Document parse(String uri) throws Exception ; 72 73 91 92 public void setFeature(String featureId, boolean state) 93 throws SAXNotRecognizedException , SAXNotSupportedException ; 94 95 } | Popular Tags |