JDOM
2.0.5

Package org.jdom2.output

Classes to output JDOM documents to various destinations.

See:
          Description

Interface Summary
EscapeStrategy Logic to determine which characters should be formatted as character entities.
JDOMLocator An implementation of the SAX Locator interface that exposes the JDOM node being processed by SAXOutputter.
 

Class Summary
DOMOutputter Outputs a JDOM org.jdom2.Document as a DOM org.w3c.dom.Document.
Format Class to encapsulate XMLOutputter format options.
SAXOutputter Outputs a JDOM document as a stream of SAX2 events.
StAXEventOutputter Outputs a JDOM document as a StAX XMLEventConsumer of bytes.
StAXStreamOutputter Outputs a JDOM document as a StAX XMLStreamWriter of bytes.
XMLOutputter Outputs a JDOM document as a stream of bytes.
 

Enum Summary
Format.TextMode Class to signify how text should be handled on output.
LineSeparator An enumeration of common separators that are used for JDOM output.
 

Package org.jdom2.output Description

Classes to output JDOM documents to various destinations. The most common outputter class is XMLOutputter which outputs a document (or part of a document) as a stream of bytes. Format and EscapeStrategy support the XMLOutputter in letting you choose how the output should be formatted and how special characters should be escaped. SAXOutputter lets you output as a stream of SAX events (handy especially in transformations). JDOMLocator supports SAXOutputter and helps you observe the SAX output process. DOMOutputter lets you output a JDOM document as a DOM tree. StAXStreamOutputter lets you output the JDOM content to an XMLStreamWriter, and the StAXEventOutputter lets you output the JDOM content to an XMLEventWriter.


JDOM
2.0.5

Copyright � 2013 Jason Hunter, Brett McLaughlin. All Rights Reserved.