The process of taking an in-memory JDOM Document
and converting it to
an org.w3c.dom.Document
object
The org.jdom.output.DOMOutputter
class:
package org.jdom.output;
public class DOMOutputter {
// Constructors
public DOMOutputter() {}
public DOMOutputter(String adapterClass) {}
// Outputter methods
public org.w3c.dom.Document output(Document document) throws JDOMException {}
protected org.w3c.dom.Element output(Element element, org.w3c.dom.Document domDoc,
NamespaceStack namespaces) throws JDOMException {}
protected org.w3c.dom.Attr output(Attribute attribute, org.w3c.dom.Document domDoc)
throws JDOMException {}
}