org.jdom.input |
Classes to build JDOM documents from various sources. The most common builder
class is SAXBuilder which constructs a JDOM document using a SAX parser and
can pull content from files, streams, sockets, readers, and so on. It can use
any underlying SAX parser to handle the parsing chores. SAXHandler provides
support for SAXBuilder. DOMBuilder lets you build from a pre-existing DOM
tree.
|
Java Source File Name | Type | Comment |
BuilderErrorHandler.java | Class | The standard JDOM error handler implementation. |
DOMBuilder.java | Class | Builds a JDOM
org.jdom.Document org.jdom.Document from a pre-existing
DOM
org.w3c.dom.Document org.w3c.dom.Document . |
JAXPParserFactory.java | Class | A non-public utility class to allocate JAXP SAX parsers. |
JDOMParseException.java | Class | Thrown during parse errors, with information about where the parse error
occurred as well as access to the partially built document. |
SAXBuilder.java | Class | Builds a JDOM document from files, streams, readers, URLs, or a SAX
org.xml.sax.InputSource instance using a SAX parser. |
SAXHandler.java | Class | A support class for
SAXBuilder .
version: $Revision: 1.68 $, $Date: 2004/08/31 06:14:05 $ author: Brett McLaughlin author: Jason Hunter author: Philip Nelson author: Bradley S. |
TextBuffer.java | Class | A non-public utility class similar to StringBuffer but optimized for XML
parsing where the common case is that you get only one chunk of characters
per text section. |