Home | History | Annotate | Download | only in util

Lines Matching defs:Xml

24 import org.apache.harmony.xml.ExpatReader;
26 import org.xml.sax.ContentHandler;
27 import org.xml.sax.InputSource;
28 import org.xml.sax.SAXException;
29 import org.xml.sax.XMLReader;
36 * XML utility methods.
38 public class Xml {
39 /** @hide */ public Xml() {}
50 * Parses the given xml string and fires events on the given SAX handler.
52 public static void parse(String xml, ContentHandler contentHandler)
57 reader.parse(new InputSource(new StringReader(xml)));
64 * Parses xml from the given reader and fires events on the given SAX
75 * Parses xml from the given input stream and fires events on the given SAX
102 * Creates a new xml serializer.
112 /** Factory for xml serializers. Initialized on demand. */
171 * through its XML document.