public abstract class SAXParser {
public void parse(InputStream stream, HandlerBase base)
throws SAXException, IOException, IllegalArgumentException;
public void parse(InputStream stream, HandlerBase base, String systemID)
throws SAXException, IOException, IllegalArgumentException;
public void parse(String uri, HandlerBase base)
throws SAXException, IOException, IllegalArgumentException;
public void parse(File file, HandlerBase base)
throws SAXException, IOException, IllegalArgumentException;
public void parse(InputSource source, HandlerBase base)
throws SAXException, IOException, IllegalArgumentException;
public void parse(InputStream stream, DefaultHandler dh)
throws SAXException, IOException, IllegalArgumentException;
public void parse(InputStream stream, DefaultHandler dh, String systemID)
throws SAXException, IOException, IllegalArgumentException;
public void parse(String uri, DefaultHandler dh)
throws SAXException, IOException, IllegalArgumentException;
public void parse(File file, DefaultHandler dh)
throws SAXException, IOException, IllegalArgumentException;
public void parse(InputSource source, DefaultHandler dh)
throws SAXException, IOException, IllegalArgumentException;
public Parser getParser( ) throws SAXException;
public XMLReader getXMLReader( ) throws SAXException;
public Object getProperty(String name);
public void setProperty(String name, Object value);
public boolean isNamespaceAware( );
public boolean isValidating( );
}