Team LiB
Previous Section Next Section

Parserorg.xml.sax

Java 1.4; Deprecated in 1.4

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;  
}

Implementations

org.xml.sax.helpers.XMLReaderAdapter

Passed To

org.xml.sax.helpers.ParserAdapter.ParserAdapter( )

Returned By

javax.xml.parsers.SAXParser.getParser( ), org.xml.sax.helpers.ParserFactory.makeParser( )

    Team LiB
    Previous Section Next Section