All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jdom2.output.DOMOutputter Maven / Gradle / Ivy

Go to download

A complete, Java-based solution for accessing, manipulating, and outputting XML data

The newest version!
/*-- 

 Copyright (C) 2000-2011 Jason Hunter & Brett McLaughlin.
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:

 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions, and the following disclaimer.

 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions, and the disclaimer that follows 
    these conditions in the documentation and/or other materials 
    provided with the distribution.

 3. The name "JDOM" must not be used to endorse or promote products
    derived from this software without prior written permission.  For
    written permission, please contact .

 4. Products derived from this software may not be called "JDOM", nor
    may "JDOM" appear in their name, without prior written permission
    from the JDOM Project Management .

 In addition, we request (but do not require) that you include in the 
 end-user documentation provided with the redistribution and/or in the 
 software itself an acknowledgement equivalent to the following:
     "This product includes software developed by the
      JDOM Project (http://www.jdom.org/)."
 Alternatively, the acknowledgment may be graphical using the logos 
 available at http://www.jdom.org/images/logos.

 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 DISCLAIMED.  IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT
 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

 This software consists of voluntary contributions made by many 
 individuals on behalf of the JDOM Project and was originally 
 created by Jason Hunter  and
 Brett McLaughlin .  For more information
 on the JDOM Project, please see .

 */

package org.jdom2.output;

import java.util.List;

import org.jdom2.Attribute;
import org.jdom2.CDATA;
import org.jdom2.Comment;
import org.jdom2.Content;
import org.jdom2.DocType;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.EntityRef;
import org.jdom2.JDOMException;
import org.jdom2.ProcessingInstruction;
import org.jdom2.Text;
import org.jdom2.adapters.DOMAdapter;
import org.jdom2.adapters.JAXPDOMAdapter;
import org.jdom2.internal.ReflectionConstructor;
import org.jdom2.output.support.AbstractDOMOutputProcessor;
import org.jdom2.output.support.DOMOutputProcessor;

/**
 * Outputs a JDOM {@link org.jdom2.Document org.jdom2.Document} as a DOM
 * {@link org.w3c.dom.Document org.w3c.dom.Document}. Also provides methods to
 * output other types of JDOM Content in the equivalent DOM nodes.
 * 

* There are two versions of most functions, one that creates an independent DOM * node using the DOMAdapter to create a new org.w3c.dom.Document. The other * version creates the new DOM Nodes using the supplied org.w3c.dom.Document * instance. * * @author Brett McLaughlin * @author Jason Hunter * @author Matthew Merlo * @author Dan Schaffer * @author Yusuf Goolamabbas * @author Bradley S. Huffman * @author Rolf lear */ public class DOMOutputter { /** * Create a final/concrete instance of the AbstractDOMOutputProcessor. * Making it final improves performance. * * @author Rolf Lear */ private static final class DefaultDOMOutputProcessor extends AbstractDOMOutputProcessor { // add nothing except make it final. } /** Default adapter class */ private static final DOMAdapter DEFAULT_ADAPTER = new JAXPDOMAdapter(); private static final DOMOutputProcessor DEFAULT_PROCESSOR = new DefaultDOMOutputProcessor(); /** Adapter to use for interfacing with the DOM implementation */ private DOMAdapter adapter; private Format format; private DOMOutputProcessor processor; /** * 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() { this(null, null, null); } /** * This creates a new DOMOutputter which uses the defalt (JAXP) DOM * implementation but with a custom processor. * * @param processor * the custom processor to use. * @since JDOM2 */ public DOMOutputter(DOMOutputProcessor processor) { this(null, null, processor); } /** * The complete constructor for specifying a custom DOMAdaptor, Format, and * DOMOutputProcessor. * * @param adapter * The adapter to use to create the base Document instance (null * implies the default). * @param format * The output Format to use (null implies the default). * @param processor * The custom mechanism for doing the output (null implies the * default). * @since JDOM2 */ public DOMOutputter(DOMAdapter adapter, Format format, DOMOutputProcessor processor) { this.adapter = adapter == null ? DEFAULT_ADAPTER : adapter; this.format = format == null ? Format.getRawFormat() : format; this.processor = processor == null ? DEFAULT_PROCESSOR : processor; } /** * This creates a new DOMOutputter using the specified DOMAdapter * implementation as a way to choose the underlying parser. * * @param adapterClass * String name of class to use for DOM output * @throws IllegalArgumentException * if the adapter could not be instantiated. (it should be * JDOMException, but that would require a change to this deprecated * method's signature... * @deprecated use {@link DOMOutputter#DOMOutputter(DOMAdapter)} instead. */ @Deprecated public DOMOutputter(String adapterClass) { if (adapterClass == null) { adapter = DEFAULT_ADAPTER; } else { adapter = ReflectionConstructor.construct(adapterClass, DOMAdapter.class); } } /** * This creates a new DOMOutputter using the specified DOMAdapter * implementation as a way to choose the underlying parser. *

* If the specified adapter is not thread-safe then the user should ensure * that the adapter instance is never shared between multiple DOMOutputters. * The default DOMAdapter {@link JAXPDOMAdapter} is thread-safe. * * @param adapter * the DOMAdapter instance to use for creating the base * org.w3c.dom.Document Specify the null value to get the default * adapter. * @since JDOM2 */ public DOMOutputter(DOMAdapter adapter) { this.adapter = adapter == null ? DEFAULT_ADAPTER : adapter; } /** * Get the DOMAdapter currently set for this DOMOutputter. * * @return the current DOMAdapter. * @since JDOM2 */ public DOMAdapter getDOMAdapter() { return adapter; } /** * Set the DOMAdapter currently set for this DOMOutputter. * * @param adapter * the new DOMAdapter to use (null implies the default). * @since JDOM2 */ public void setDOMAdapter(DOMAdapter adapter) { this.adapter = adapter == null ? DEFAULT_ADAPTER : adapter; } /** * Get the Format instance currently used by this DOMOutputter. * * @return the current Format instance * @since JDOM2 */ public Format getFormat() { return format; } /** * Set a new Format instance for this DOMOutputter * * @param format * the new Format instance to use (null implies the default) * @since JDOM2 */ public void setFormat(Format format) { this.format = format == null ? Format.getRawFormat() : format; } /** * Get the current DOMOutputProcessor * * @return the current DOMOutputProcessor * @since JDOM2 */ public DOMOutputProcessor getDOMOutputProcessor() { return processor; } /** * Set a new DOMOutputProcessor for this DOMOutputter. * * @param processor * the new processor to set (null implies the default) * @since JDOM2 */ public void setDOMOutputProcessor(DOMOutputProcessor processor) { this.processor = processor == null ? DEFAULT_PROCESSOR : processor; } /** * Controls how NO_NAMESPACE nodes are handled. If true the outputter always * creates a namespace aware DOM. * * @param flag * true to force NamespaceAware * @deprecated All DOMOutputters are now always NamespaceAware. */ @Deprecated public void setForceNamespaceAware(boolean flag) { // do nothing } /** * Returns whether DOMs will be constructed with namespaces even when the * source document has elements all in the empty namespace. * * @return the forceNamespaceAware flag value * @deprecated All DOMOutputters are always NamesapceAware. Always true. */ @Deprecated public boolean getForceNamespaceAware() { return true; } /** * This converts the JDOM Document parameter to a DOM Document, * returning the DOM version. The DOM implementation is the one supplied by * the current DOMAdapter. * * @param document * Document to output. * @return an org.w3c.dom.Document version * @throws JDOMException * if output failed. */ public org.w3c.dom.Document output(Document document) throws JDOMException { return processor.process(adapter.createDocument(document.getDocType()), format, document); } /** * This converts the JDOM DocType parameter to a DOM DocumentType, * returning the DOM version. The DOM implementation is the one supplied by * the current DOMAdapter. *

* Unlike the other DOM Nodes, you cannot use a DOM Document to simply create a DOM DocumentType Node, * it has to be created at the same time as the DOM Document instance. As a result, there is no * version of this method that takes a DOM Document instance. * * @param doctype * DocType to output. * @return an org.w3c.dom.DocumentType version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.DocumentType output(DocType doctype) throws JDOMException { return adapter.createDocument(doctype).getDoctype(); } /** * This converts the JDOM Element parameter to a DOM Element, * returning the DOM version. The DOM Node will be linked to an independent * DOM Document instance supplied by the current DOMAdapter * * @param element * Element to output. * @return an org.w3c.dom.Element version * @throws JDOMException * if output failed. */ public org.w3c.dom.Element output(Element element) throws JDOMException { return processor.process(adapter.createDocument(), format, element); } /** * This converts the JDOM Text parameter to a DOM Text Node, * returning the DOM version. The DOM Node will be linked to an independent * DOM Document instance supplied by the current DOMAdapter * * @param text * Text to output. * @return an org.w3c.dom.Text version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.Text output(Text text) throws JDOMException { return processor.process(adapter.createDocument(), format, text); } /** * This converts the JDOM CDATA parameter to a DOM CDATASection * Node, returning the DOM version. The DOM Node will be linked to an * independent DOM Document instance supplied by the current DOMAdapter * * @param cdata * CDATA to output. * @return an org.w3c.dom.CDATASection version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.CDATASection output(CDATA cdata) throws JDOMException { return processor.process(adapter.createDocument(), format, cdata); } /** * This converts the JDOM ProcessingInstruction parameter to a * DOM ProcessingInstruction, returning the DOM version. The DOM Node will * be linked to an independent DOM Document instance supplied by the current * DOMAdapter * * @param pi * ProcessingInstruction to output. * @return an org.w3c.dom.Element version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.ProcessingInstruction output(ProcessingInstruction pi) throws JDOMException { return processor.process(adapter.createDocument(), format, pi); } /** * This converts the JDOM ProcessingInstruction parameter to a * DOM ProcessingInstruction, returning the DOM version. The DOM Node will * be linked to an independent DOM Document instance supplied by the current * DOMAdapter * * @param comment * Comment to output. * @return an org.w3c.dom.Comment version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.Comment output(Comment comment) throws JDOMException { return processor.process(adapter.createDocument(), format, comment); } /** * This converts the JDOM EntityRef parameter to a DOM * EntityReference Node, returning the DOM version. The DOM Node will be * linked to an independent DOM Document instance supplied by the current * DOMAdapter * * @param entity * EntityRef to output. * @return an org.w3c.dom.EntityReference version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.EntityReference output(EntityRef entity) throws JDOMException { return processor.process(adapter.createDocument(), format, entity); } /** * This converts the JDOM Attribute parameter to a DOM Attr * Node, returning the DOM version. The DOM Node will be linked to an * independent DOM Document instance supplied by the current DOMAdapter * * @param attribute * Attribute to output. * @return an org.w3c.dom.Attr version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.Attr output(Attribute attribute) throws JDOMException { return processor.process(adapter.createDocument(), format, attribute); } /** * This converts the JDOM Attribute parameter to a DOM Attr * Node, returning the DOM version. The DOM Node will be linked to an * independent DOM Document instance supplied by the current DOMAdapter * * @param list * Attribute to output. * @return an org.w3c.dom.Attr version * @throws JDOMException * if output failed. * @since JDOM2 */ public List output(List list) throws JDOMException { return processor.process(adapter.createDocument(), format, list); } /** * This converts the JDOM Element parameter to a DOM Element, * returning the DOM version. The DOM Node will be linked to an independent * DOM Document instance supplied by the current DOMAdapter * * @param basedoc * The DOM Document to use for creating DOM Nodes. * @param element * Element to output. * @return an org.w3c.dom.Element version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.Element output(org.w3c.dom.Document basedoc, Element element) throws JDOMException { return processor.process(basedoc, format, element); } /** * This converts the JDOM Text parameter to a DOM Text Node, * returning the DOM version. The DOM Node will be linked to an independent * DOM Document instance supplied by the current DOMAdapter * * @param basedoc * The DOM Document to use for creating DOM Nodes. * @param text * Text to output. * @return an org.w3c.dom.Text version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.Text output(org.w3c.dom.Document basedoc, Text text) throws JDOMException { return processor.process(basedoc, format, text); } /** * This converts the JDOM CDATA parameter to a DOM CDATASection * Node, returning the DOM version. The DOM Node will be linked to an * independent DOM Document instance supplied by the current DOMAdapter * * @param basedoc * The DOM Document to use for creating DOM Nodes. * @param cdata * CDATA to output. * @return an org.w3c.dom.CDATASection version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.CDATASection output(org.w3c.dom.Document basedoc, CDATA cdata) throws JDOMException { return processor.process(basedoc, format, cdata); } /** * This converts the JDOM ProcessingInstruction parameter to a * DOM ProcessingInstruction, returning the DOM version. The DOM Node will * be linked to an independent DOM Document instance supplied by the current * DOMAdapter * * @param basedoc * The DOM Document to use for creating DOM Nodes. * @param pi * ProcessingInstruction to output. * @return an org.w3c.dom.Element version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.ProcessingInstruction output( org.w3c.dom.Document basedoc, ProcessingInstruction pi) throws JDOMException { return processor.process(basedoc, format, pi); } /** * This converts the JDOM ProcessingInstruction parameter to a * DOM ProcessingInstruction, returning the DOM version. The DOM Node will * be linked to an independent DOM Document instance supplied by the current * DOMAdapter * * @param basedoc * The DOM Document to use for creating DOM Nodes. * @param comment * Comment to output. * @return an org.w3c.dom.Comment version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.Comment output(org.w3c.dom.Document basedoc, Comment comment) throws JDOMException { return processor.process(basedoc, format, comment); } /** * This converts the JDOM EntityRef parameter to a DOM * EntityReference Node, returning the DOM version. The DOM Node will be * linked to an independent DOM Document instance supplied by the current * DOMAdapter * * @param basedoc * The DOM Document to use for creating DOM Nodes. * @param entity * EntityRef to output. * @return an org.w3c.dom.EntityReference version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.EntityReference output(org.w3c.dom.Document basedoc, EntityRef entity) throws JDOMException { return processor.process(basedoc, format, entity); } /** * This converts the JDOM Attribute parameter to a DOM Attr * Node, returning the DOM version. The DOM Node will be linked to an * independent DOM Document instance supplied by the current DOMAdapter * * @param basedoc * The DOM Document to use for creating DOM Nodes. * @param attribute * Attribute to output. * @return an org.w3c.dom.Attr version * @throws JDOMException * if output failed. * @since JDOM2 */ public org.w3c.dom.Attr output(org.w3c.dom.Document basedoc, Attribute attribute) throws JDOMException { return processor.process(basedoc, format, attribute); } /** * This converts the list of JDOM Content in to a list of DOM * Nodes, returning the DOM version. The DOM Node will be linked to an * independent DOM Document instance supplied by the current DOMAdapter * * @param basedoc * The DOM Document to use for creating DOM Nodes. * @param list * of JDOM Content to output. * @return a List of org.w3c.dom.Node * @throws JDOMException * if output failed. * @since JDOM2 */ public List output(org.w3c.dom.Document basedoc, List list) throws JDOMException { return processor.process(basedoc, format, list); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy