src/javax/xml/parsers/SAXParser.java

Print this page

        

*** 67,87 **** * * As the content is parsed by the underlying parser, methods of the * given {@link org.xml.sax.HandlerBase} or the * {@link org.xml.sax.helpers.DefaultHandler} are called.<p> * ! * Implementors of this class which wrap an underlaying implementation * can consider using the {@link org.xml.sax.helpers.ParserAdapter} * class to initially adapt their SAX1 implementation to work under * this revised class. * * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a> */ public abstract class SAXParser { /** ! * <p>Protected constructor to prevent instaniation. * Use {@link javax.xml.parsers.SAXParserFactory#newSAXParser()}.</p> */ protected SAXParser () { } --- 67,87 ---- * * As the content is parsed by the underlying parser, methods of the * given {@link org.xml.sax.HandlerBase} or the * {@link org.xml.sax.helpers.DefaultHandler} are called.<p> * ! * Implementors of this class which wrap an underlying implementation * can consider using the {@link org.xml.sax.helpers.ParserAdapter} * class to initially adapt their SAX1 implementation to work under * this revised class. * * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a> */ public abstract class SAXParser { /** ! * <p>Protected constructor to prevent instantiation. * Use {@link javax.xml.parsers.SAXParserFactory#newSAXParser()}.</p> */ protected SAXParser () { }
*** 391,404 **** } reader.parse(is); } /** ! * Returns the SAX parser that is encapsultated by the * implementation of this class. * ! * @return The SAX parser that is encapsultated by the * implementation of this class. * * @throws SAXException If any SAX errors occur during processing. */ public abstract org.xml.sax.Parser getParser() throws SAXException; --- 391,404 ---- } reader.parse(is); } /** ! * Returns the SAX parser that is encapsulated by the * implementation of this class. * ! * @return The SAX parser that is encapsulated by the * implementation of this class. * * @throws SAXException If any SAX errors occur during processing. */ public abstract org.xml.sax.Parser getParser() throws SAXException;