Methods Summary |
---|
public void | parse(org.xml.sax.InputSource source)
try {
xmlReader.parse(source);
} catch (IOException ioe) {
throw new SAXException(ioe);
}
|
public void | parse(java.lang.String systemId)
try {
xmlReader.parse(systemId);
} catch (IOException ioe) {
throw new SAXException(ioe);
}
|
public void | setDTDHandler(org.xml.sax.DTDHandler h)
xmlReader.setDTDHandler(h);
|
public void | setDocumentHandler(org.xml.sax.DocumentHandler h)
xmlReader.setContentHandler(new DocHandlerWrapper(h));
|
public void | setEntityResolver(org.xml.sax.EntityResolver r)
xmlReader.setEntityResolver(r);
|
public void | setErrorHandler(org.xml.sax.ErrorHandler h)
xmlReader.setErrorHandler(h);
|
public void | setLocale(java.util.Locale locale)
/* I have no idea what this is supposed to do... so let's
* throw an exception
*/
throw new SAXNotSupportedException("TagSoup does not implement setLocale() method");
|