org.jdom2.output.support.DOMOutputProcessor Maven / Gradle / Ivy
Show all versions of jdom Show documentation
/*--
Copyright (C) 2000-2007 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.support;
import java.util.List;
import org.jdom2.Attribute;
import org.jdom2.CDATA;
import org.jdom2.Comment;
import org.jdom2.Content;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.EntityRef;
import org.jdom2.ProcessingInstruction;
import org.jdom2.Text;
import org.jdom2.output.DOMOutputter;
import org.jdom2.output.Format;
/**
* This interface provides a base support for the {@link DOMOutputter}.
*
* People who want to create a custom DOMOutputProcessor for DOMOutputter are
* able to implement this interface with the following notes and restrictions:
*
* - The DOMOutputter will call one, and only one of the
*
process(Format,*)
methods each time the DOMOutputter is
* requested to output some JDOM content. It is thus safe to assume that a
* process(Format,*)
method can set up any infrastructure needed to
* process the content, and that the DOMOutputter will not re-call that method,
* or some other process(Format,*)
method for the same output
* sequence.
* - The process methods should be thread-safe and reentrant: The same
*
process(Format,*)
method may (will) be called concurrently from
* different threads.
*
*
* The {@link AbstractDOMOutputProcessor} class is a full implementation of this
* interface and is fully customisable. People who want a custom DOMOutputter
* are encouraged to extend the AbstractDOMOutputProcessor rather than do a full
* re-implementation of this interface.
*
* @see DOMOutputter
* @see AbstractDOMOutputProcessor
* @since JDOM2
* @author Rolf Lear
*/
public interface DOMOutputProcessor {
/**
* This will convert the {@link Document}
to the given DOM
* Document.
*
*
* @param basedoc
* The DOM document to use for the conversion
* @param format
* Format
instance specifying output style
* @param doc
* Document
to format.
* @return The same DOM Document as the input document, but with the JDOM
* content converted and added.
*/
public org.w3c.dom.Document process(org.w3c.dom.Document basedoc,
Format format, Document doc);
/**
* This will convert the {@link Element}
using the given DOM
* Document to create the resulting DOM Element.
*
* @param basedoc
* The DOM document to use for the conversion
* @param format
* Format
instance specifying output style
* @param element
* Element
to format.
* @return The input JDOM Element converted to a DOM Element
*/
public org.w3c.dom.Element process(org.w3c.dom.Document basedoc,
Format format, Element element);
/**
* This will convert the list of JDOM {@link Content}
using the
* given DOM Document to create the resulting list of DOM Nodes.
*
* @param basedoc
* The DOM document to use for the conversion
* @param format
* Format
instance specifying output style
* @param list
* JDOM Content
to convert.
* @return The input JDOM Content List converted to a List of DOM Nodes
*/
public List process(org.w3c.dom.Document basedoc,
Format format, List extends Content> list);
/**
* This will convert the {@link CDATA}
using the given DOM
* Document to create the resulting DOM CDATASection.
*
* @param basedoc
* The DOM document to use for the conversion
* @param format
* Format
instance specifying output style
* @param cdata
* CDATA
to format.
* @return The input JDOM CDATA converted to a DOM CDATASection
*/
public org.w3c.dom.CDATASection process(org.w3c.dom.Document basedoc,
Format format, CDATA cdata);
/**
* This will convert the {@link Text}
using the given DOM
* Document to create the resulting DOM Text.
*
* @param basedoc
* The DOM document to use for the conversion
* @param format
* Format
instance specifying output style
* @param text
* Text
to format.
* @return The input JDOM Text converted to a DOM Text
*/
public org.w3c.dom.Text process(org.w3c.dom.Document basedoc,
Format format, Text text);
/**
* This will convert the {@link Comment}
using the given DOM
* Document to create the resulting DOM Comment.
*
* @param basedoc
* The DOM document to use for the conversion
* @param format
* Format
instance specifying output style
* @param comment
* Comment
to format.
* @return The input JDOM Comment converted to a DOM Comment
*/
public org.w3c.dom.Comment process(org.w3c.dom.Document basedoc,
Format format, Comment comment);
/**
* This will convert the {@link ProcessingInstruction}
using
* the given DOM Document to create the resulting DOM ProcessingInstruction.
*
* @param basedoc
* The DOM document to use for the conversion
* @param format
* Format
instance specifying output style
* @param pi
* ProcessingInstruction
to format.
* @return The input JDOM ProcessingInstruction converted to a DOM
* ProcessingInstruction
*/
public org.w3c.dom.ProcessingInstruction process(
org.w3c.dom.Document basedoc, Format format,
ProcessingInstruction pi);
/**
* This will convert the {@link EntityRef}
using the given DOM
* Document to create the resulting DOM EntityReference.
*
* @param basedoc
* The DOM document to use for the conversion
* @param format
* Format
instance specifying output style
* @param entity
* EntityRef
to format.
* @return The input JDOM EntityRef converted to a DOM EntityReference
*/
public org.w3c.dom.EntityReference process(org.w3c.dom.Document basedoc,
Format format, EntityRef entity);
/**
* This will convert the {@link Attribute}
using the given DOM
* Document to create the resulting DOM Attr.
*
* @param basedoc
* The DOM document to use for the conversion
* @param format
* Format
instance specifying output style
* @param attribute
* Attribute
to format.
* @return The input JDOM Attribute converted to a DOM Attr
*/
public org.w3c.dom.Attr process(org.w3c.dom.Document basedoc,
Format format, Attribute attribute);
}