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

Quick Search    Search Deep

org.jdom.input: Javadoc index of package org.jdom.input.


Package Samples:

org.jdom.input: Classes to represent the components of an XML document.  

Classes:

SAXBuilder: Builds a JDOM document from files, streams, readers, URLs, or a SAX org.xml.sax.InputSource instance using a SAX parser. The builder uses a third-party SAX parser (chosen by JAXP by default, or you can choose manually) to handle the parsing duties and simply listens to the SAX events to construct a document. Details which SAX does not provide, such as whitespace outside the root element, are not represented in the JDOM document. Information about SAX can be found at http://www.saxproject.org . Known issues: Relative paths for a org.jdom.DocType or org.jdom.EntityRef may be converted by the SAX ...
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. TextBuffer stores the first chunk of characters in a String, which can just be returned directly if no second chunk is received. Subsequent chunks are stored in a supplemental char array (like StringBuffer uses). In this case, the returned text will be the first String chunk, concatenated with the subsequent chunks stored in the char array. This provides optimal performance in the common case, while still providing very good performance ...
DOMBuilder: Builds a JDOM org.jdom.Document from a pre-existing DOM org.w3c.dom.Document . Also handy for testing builds from files to sanity check SAXBuilder .
JDOMParseException: Thrown during parse errors, with information about where the parse error occurred as well as access to the partially built document.
SAXHandler: A support class for SAXBuilder .
JAXPParserFactory: A non-public utility class to allocate JAXP SAX parsers.
BuilderErrorHandler: The standard JDOM error handler implementation.

Home | Contact Us | Privacy Policy | Terms of Service