Home | History | Annotate | Download | only in sax

Lines Matching defs:sax

0 // SAX parser interface.
6 package org.xml.sax;
13 * Basic interface for SAX (Simple API for XML) parsers.
23 * been replaced in SAX2 by {@link org.xml.sax.XMLReader XMLReader},
40 * {@link org.xml.sax.XMLReader XMLReader}
42 * @since SAX 1.0
45 * @see org.xml.sax.EntityResolver
46 * @see org.xml.sax.DTDHandler
47 * @see org.xml.sax.DocumentHandler
48 * @see org.xml.sax.ErrorHandler
49 * @see org.xml.sax.HandlerBase
50 * @see org.xml.sax.InputSource
59 * <p>SAX parsers are not required to provide localisation for errors
61 * however, they must throw a SAX exception. Applications may
65 * @exception org.xml.sax.SAXException Throws an exception
68 * @see org.xml.sax.SAXException
69 * @see org.xml.sax.SAXParseException
79 * SAX parser will resolve system identifiers and open connections
84 * in the middle of a parse, and the SAX parser must begin using
98 * events reported by the SAX parser will be silently
103 * handler in the middle of a parse, and the SAX parser must
117 * document events reported by the SAX parser will be silently
122 * middle of a parse, and the SAX parser must begin using the new
136 * all error events reported by the SAX parser will be silently
141 * middle of a parse, and the SAX parser must begin using the new
155 * <p>The application can use this method to instruct the SAX parser
167 * @exception org.xml.sax.SAXException Any SAX exception, possibly
172 * @see org.xml.sax.InputSource
198 * @exception org.xml.sax.SAXException Any SAX exception, possibly
203 * @see #parse(org.xml.sax.InputSource)