Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Package org.jdom.input

Classes to represent the components of an XML document.

See:
          Description

Class Summary
BuilderErrorHandler The standard JDOM error handler implementation.
DOMBuilder Builds a JDOM org.jdom.Document from a pre-existing DOM org.w3c.dom.Document.
JAXPParserFactory A non-public utility class to allocate JAXP SAX parsers.
SAXBuilder Builds a JDOM document from files, streams, readers, URLs, or a SAX org.xml.sax.InputSource instance using a SAX parser.
SAXHandler A support class for SAXBuilder.
TextBuffer 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.
 

Exception Summary
JDOMParseException Thrown during parse errors, with information about where the parse error occurred as well as access to the partially built document.
 

Package org.jdom.input Description

Classes to represent the components of an XML document. The Verifier is a special class useful in ensuring well-formedness of documents. The Parent interface is implemented by Document and Element exposing their commonality. The Content abstract class is extended by all the node types of a document except Document itself. The JDOMFactory interface and DefaultJDOMFactory standard implementation provide advanced users with the ability to create subtypes of the org.jdom classes.