This interface is part of the SAX1 API and has
been deprecated in favor of the SAX2 XMLReader
interface, which supports XML namespaces.
public interface
Parser {
// Public Instance Methods
void
parse (InputSource
source ) throws SAXException, java.io.IOException;
void
parse (String
systemId ) throws SAXException, java.io.IOException;
void
setDocumentHandler (DocumentHandler
handler );
void
setDTDHandler (DTDHandler
handler );
void
setEntityResolver (EntityResolver
resolver );
void
setErrorHandler (ErrorHandler
handler );
void
setLocale (java.util.Locale
locale ) throws SAXException;
}
javax.xml.parsers.SAXParser.getParser( ),
org.xml.sax.helpers.ParserFactory.makeParser( )