| java.lang.Object org.jdom.output.DOMOutputter
DOMOutputter | public class DOMOutputter (Code) | | Outputs a JDOM
org.jdom.Document org.jdom.Document as a DOM
org.w3c.dom.Document org.w3c.dom.Document .
version: $Revision: 1.1 $, $Date: 2005/04/27 09:32:42 $ author: Brett McLaughlin author: Jason Hunter author: Matthew Merlo author: Dan Schaffer author: Yusuf Goolamabbas author: Bradley S. Huffman |
Constructor Summary | |
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. | public | DOMOutputter(String adapterClass) This creates a new DOMOutputter using the specified DOMAdapter
implementation as a way to choose the underlying parser. |
DOMOutputter | public DOMOutputter()(Code) | | 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)(Code) | | This creates a new DOMOutputter using the specified DOMAdapter
implementation as a way to choose the underlying parser.
Parameters: adapterClass - String name of classto use for DOM output |
output | public org.w3c.dom.Document output(Document document) throws JDOMException(Code) | | 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. an org.w3c.dom.Document version |
|
|