Name

Parser

Synopsis

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( )

Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.