Package org.cdmckay.coffeedom.output

Classes to output CoffeeDOM documents to various destinations.

See:
          Description

Interface Summary
EscapeStrategy Logic to determine which characters should be formatted as character entities.
 

Class Summary
CoffeeDOMLocator An implementation of the SAX Locator interface that exposes the CoffeeDOM node being processed by SAXOutputter.
DOMOutputter Outputs a CoffeeDOM Document as a DOM org.w3c.dom.Document.
Format Class to encapsulate XMLOutputter format options.
SAXOutputter Outputs a CoffeeDOM document as a stream of SAX2 events.
XMLOutputter Outputs a CoffeeDOM document as a stream of bytes.
 

Enum Summary
Format.TextMode Class to signify how text should be handled on output.
 

Package org.cdmckay.coffeedom.output Description

Classes to output CoffeeDOM 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). CoffeeDOMLocator supports SAXOutputter and helps you observe the SAX output process. DOMOutputter lets you output a CoffeeDOM document as a DOM tree.



Copyright © 2011. All Rights Reserved.