Parser


Parser org.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( )



Java In A Nutshell
Java In A Nutshell, 5th Edition
ISBN: 0596007736
EAN: 2147483647
Year: 2004
Pages: 1220

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net