HomeSort by relevance Sort by last modified time
    Searched refs:xml (Results 126 - 150 of 1538) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/org/xml/sax/ext/
DeclHandler.java 6 package org.xml.sax.ext;
8 import org.xml.sax.SAXException;
22 * complete information about DTD declarations in an XML document.
23 * XML readers are not required to recognize this handler, and it
28 * org.xml.sax.DTDHandler DTDHandler} interface.</p>
32 * {@link org.xml.sax.ext.LexicalHandler#startDTD startDTD} and the
33 * {@link org.xml.sax.ext.LexicalHandler#endDTD endDTD} events.</p>
35 * <p>To set the DeclHandler for an XML reader, use the
36 * {@link org.xml.sax.XMLReader#setProperty setProperty} method
38 * <code>http://xml.org/sax/properties/declaration-handler</code
    [all...]
LexicalHandler.java 6 package org.xml.sax.ext;
8 import org.xml.sax.SAXException;
21 * lexical information about an XML document, such as comments
23 * XML readers are not required to recognize this handler, and it
31 * <p>To set the LexicalHandler for an XML reader, use the
32 * {@link org.xml.sax.XMLReader#setProperty setProperty} method
34 * <code>http://xml.org/sax/properties/lexical-handler</code>
37 * {@link org.xml.sax.SAXNotRecognizedException SAXNotRecognizedException}
55 * {@link org.xml.sax.DTDHandler DTDHandler} or
56 * {@link org.xml.sax.ext.DeclHandler DeclHandler} events must appea
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserFactory.java 6 package org.xml.sax.helpers;
8 import org.xml.sax.Parser;
22 * SAX1 {@link org.xml.sax.Parser Parser} class. SAX2 applications should use
23 * {@link org.xml.sax.helpers.XMLReaderFactory XMLReaderFactory} instead.</p>
27 * specifically for Java XML application writers. SAX applications
30 * `org.xml.sax.parser' system property or on a string containing the class
33 * <p>Note that the application still requires an XML parser that
37 * {@link org.xml.sax.Parser Parser}
56 * Create a new SAX parser using the `org.xml.sax.parser' system property.
59 * {@link org.xml.sax.Parser Parser} interface.</p
    [all...]
XMLReaderAdapter.java 7 package org.xml.sax.helpers;
11 import org.xml.sax.AttributeList;
12 import org.xml.sax.Attributes;
13 import org.xml.sax.ContentHandler;
14 import org.xml.sax.DTDHandler;
15 import org.xml.sax.DocumentHandler;
16 import org.xml.sax.EntityResolver;
17 import org.xml.sax.ErrorHandler;
18 import org.xml.sax.InputSource;
19 import org.xml.sax.Locator
    [all...]