1 6 package org.xml.sax.ext; 7 8 import java.io.IOException ; 9 10 import org.xml.sax.EntityResolver ; 11 import org.xml.sax.InputSource ; 12 import org.xml.sax.XMLReader ; 13 import org.xml.sax.SAXException ; 14 15 16 62 public interface EntityResolver2 extends EntityResolver  63 { 64 134 public InputSource getExternalSubset (String name, String baseURI) 135 throws SAXException , IOException ; 136 137 191 public InputSource resolveEntity ( 192 String name, 193 String publicId, 194 String baseURI, 195 String systemId 196 ) throws SAXException , IOException ; 197 } 198 | Popular Tags |