org.jdom.output

Class DOMOutputter


public class DOMOutputter
extends Object

Outputs a JDOM org.jdom.Document as a DOM org.w3c.dom.Document.
Version:
$Revision: 1.41 $, $Date: 2004/09/03 06:03:42 $
Authors:
Brett McLaughlin
Jason Hunter
Matthew Merlo
Dan Schaffer
Yusuf Goolamabbas
Bradley S. Huffman

Constructor Summary

DOMOutputter()
This creates a new DOMOutputter which will attempt to first locate a DOM implementation to use via JAXP, and if JAXP does not exist or there's a problem, will fall back to the default parser.
DOMOutputter(String adapterClass)
This creates a new DOMOutputter using the specified DOMAdapter implementation as a way to choose the underlying parser.

Method Summary

org.w3c.dom.Document
output(Document document)
This converts the JDOM Document parameter to a DOM Document, returning the DOM version.

Constructor Details

DOMOutputter

public DOMOutputter()
This creates a new DOMOutputter which will attempt to first locate a DOM implementation to use via JAXP, and if JAXP does not exist or there's a problem, will fall back to the default parser.

DOMOutputter

public DOMOutputter(String adapterClass)
This creates a new DOMOutputter using the specified DOMAdapter implementation as a way to choose the underlying parser.
Parameters:
adapterClass - String name of class to use for DOM output

Method Details

output

public org.w3c.dom.Document output(Document document)
            throws JDOMException
This converts the JDOM Document parameter to a DOM Document, returning the DOM version. The DOM implementation is the one chosen in the constructor.
Parameters:
document - Document to output.
Returns:
an org.w3c.dom.Document version

Copyright B) 2004 Jason Hunter, Brett McLaughlin. All Rights Reserved.