org.jdom2.JDOMFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdom Show documentation
Show all versions of jdom Show documentation
A complete, Java-based solution for accessing, manipulating,
and outputting XML data
The newest version!
/*--
Copyright (C) 2000-2012 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;
import java.util.*;
/**
* An interface to be used by builders when constructing JDOM objects. The
* DefaultJDOMFactory
creates the standard top-level JDOM classes
* (Element, Document, Comment, etc). Another implementation of this factory
* could be used to create custom classes.
*
* @author Ken Rune Holland
* @author Phil Nelson
* @author Bradley S. Huffman
* @author Rolf Lear
*/
public interface JDOMFactory {
// **** constructing Attributes ****
/**
*
* This will create a new Attribute
with the
* specified (local) name and value, and in the provided
* {@link org.jdom2.Namespace}
.
*
*
* @param name String
name of Attribute
.
* @param value String
value for new attribute.
* @param namespace Namespace
of the new Attribute
* @return the created Attribute instance
*/
public Attribute attribute(String name, String value, Namespace namespace);
/**
* This will create a new Attribute
with the
* specified (local) name, value, and type, and in the provided
* {@link org.jdom2.Namespace}
.
*
* @param name String
name of Attribute
.
* @param value String
value for new attribute.
* @param type int
type for new attribute.
* @param namespace Namespace
namespace for new attribute.
* @return the created Attribute instance
* @deprecated Use {@link #attribute(String, String, AttributeType, Namespace)}
*/
@Deprecated
public Attribute attribute(String name, String value,
int type, Namespace namespace);
/**
* This will create a new Attribute
with the
* specified (local) name, value, and type, and in the provided
* {@link org.jdom2.Namespace}
.
*
* @param name String
name of Attribute
.
* @param value String
value for new attribute.
* @param type AttributeType
type for new attribute.
* @param namespace Namespace
namespace for new attribute.
* @return the created Attribute instance
*/
public Attribute attribute(String name, String value,
AttributeType type, Namespace namespace);
/**
* This will create a new Attribute
with the
* specified (local) name and value, and does not place
* the attribute in a {@link org.jdom2.Namespace}
.
*
* Note: This actually explicitly puts the
* Attribute
in the "empty" Namespace
* ({@link org.jdom2.Namespace#NO_NAMESPACE}
).
*
*
* @param name String
name of Attribute
.
* @param value String
value for new attribute.
* @return the created Attribute instance
*/
public Attribute attribute(String name, String value);
/**
* This will create a new Attribute
with the
* specified (local) name, value and type, and does not place
* the attribute in a {@link org.jdom2.Namespace}
.
*
* Note: This actually explicitly puts the
* Attribute
in the "empty" Namespace
* ({@link org.jdom2.Namespace#NO_NAMESPACE}
).
*
*
* @param name String
name of Attribute
.
* @param value String
value for new attribute.
* @param type int
type for new attribute.
* @return the created Attribute instance
* @deprecated use {@link #attribute(String, String, AttributeType)}
*/
@Deprecated
public Attribute attribute(String name, String value, int type);
/**
* This will create a new Attribute
with the
* specified (local) name, value and type, and does not place
* the attribute in a {@link org.jdom2.Namespace}
.
*
* Note: This actually explicitly puts the
* Attribute
in the "empty" Namespace
* ({@link org.jdom2.Namespace#NO_NAMESPACE}
).
*
*
* @param name String
name of Attribute
.
* @param value String
value for new attribute.
* @param type AttributeType
type for new attribute.
* @return the created Attribute instance
*/
public Attribute attribute(String name, String value, AttributeType type);
// **** constructing CDATA ****
/**
* This creates the CDATA with the supplied text.
*
* @param str String
content of CDATA.
* @return the created CDATA instance
*/
public CDATA cdata(String str);
/**
* This creates the CDATA with the supplied text.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param str String
content of CDATA.
* @return the created CDATA instance
* @since JDOM2
*/
public CDATA cdata(int line, int col, String str);
// **** constructing Text ****
/**
* This creates the Text with the supplied text.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param str String
content of Text.
* @return the created Text instance
* @since JDOM2
*/
public Text text(int line, int col, String str);
// **** constructing Text ****
/**
* This creates the Text with the supplied text.
*
* @param str String
content of Text.
* @return the created Text instance
*/
public Text text(String str);
// **** constructing Comment ****
/**
* This creates the comment with the supplied text.
*
* @param text String
content of comment.
* @return the created Comment instance
*/
public Comment comment(String text);
/**
* This creates the comment with the supplied text.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param text String
content of comment.
* @return the created Comment instance
* @since JDOM2
*/
public Comment comment(int line, int col, String text);
// **** constructing DocType
/**
* This will create the DocType
with
* the specified element name and a reference to an
* external DTD.
*
* @param elementName String
name of
* element being constrained.
* @param publicID String
public ID of
* referenced DTD
* @param systemID String
system ID of
* referenced DTD
* @return the created DocType instance
*/
public DocType docType(String elementName,
String publicID, String systemID);
/**
* This will create the DocType
with
* the specified element name and reference to an
* external DTD.
*
* @param elementName String
name of
* element being constrained.
* @param systemID String
system ID of
* referenced DTD
* @return the created DocType instance
*/
public DocType docType(String elementName, String systemID);
/**
* This will create the DocType
with
* the specified element name
*
* @param elementName String
name of
* element being constrained.
* @return the created DocType instance
*/
public DocType docType(String elementName);
/**
* This will create the DocType
with
* the specified element name and a reference to an
* external DTD.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param elementName String
name of
* element being constrained.
* @param publicID String
public ID of
* referenced DTD
* @param systemID String
system ID of
* referenced DTD
* @return the created DocType instance
* @since JDOM2
*/
public DocType docType(int line, int col, String elementName,
String publicID, String systemID);
/**
* This will create the DocType
with
* the specified element name and reference to an
* external DTD.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param elementName String
name of
* element being constrained.
* @param systemID String
system ID of
* referenced DTD
* @return the created DocType instance
* @since JDOM2
*/
public DocType docType(int line, int col, String elementName, String systemID);
/**
* This will create the DocType
with
* the specified element name
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param elementName String
name of
* element being constrained.
* @return the created DocType instance
* @since JDOM2
*/
public DocType docType(int line, int col, String elementName);
// **** constructing Document
/**
* This will create a new Document
,
* with the supplied {@link org.jdom2.Element}
* as the root element and the supplied
* {@link org.jdom2.DocType}
declaration.
*
* @param rootElement Element
for document root.
* @param docType DocType
declaration.
* @return the created Document instance
*/
public Document document(Element rootElement, DocType docType);
/**
* This will create a new Document
,
* with the supplied {@link org.jdom2.Element}
* as the root element and the supplied
* {@link org.jdom2.DocType}
declaration.
*
* @param rootElement Element
for document root.
* @param docType DocType
declaration.
* @param baseURI the URI from which this doucment was loaded.
* @return the created Document instance
*/
public Document document(Element rootElement, DocType docType, String baseURI);
/**
* This will create a new Document
,
* with the supplied {@link org.jdom2.Element}
* as the root element, and no {@link org.jdom2.DocType}
* declaration.
*
* @param rootElement Element
for document root
* @return the created Document instance
*/
public Document document(Element rootElement);
// **** constructing Elements ****
/**
* This will create a new Element
* with the supplied (local) name, and define
* the {@link org.jdom2.Namespace}
to be used.
*
* @param name String
name of element.
* @param namespace Namespace
to put element in.
* @return the created Element instance
*/
public Element element(String name, Namespace namespace);
/**
* This will create an Element
in no
* {@link org.jdom2.Namespace}
.
*
* @param name String
name of element.
* @return the created Element instance
*/
public Element element(String name);
/**
* This will create a new Element
with
* the supplied (local) name, and specifies the URI
* of the {@link org.jdom2.Namespace}
the Element
* should be in, resulting it being unprefixed (in the default
* namespace).
*
* @param name String
name of element.
* @param uri String
URI for Namespace
element
* should be in.
* @return the created Element instance
*/
public Element element(String name, String uri);
/**
* This will create a new Element
with
* the supplied (local) name, and specifies the prefix and URI
* of the {@link org.jdom2.Namespace}
the Element
* should be in.
*
* @param name String
name of element.
* @param prefix the NamespacePrefic to use for this Element
* @param uri String
URI for Namespace
element
* should be in.
* @return the created Element instance
*/
public Element element(String name, String prefix, String uri);
/**
* This will create a new Element
* with the supplied (local) name, and define
* the {@link org.jdom2.Namespace}
to be used.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param name String
name of element.
* @param namespace Namespace
to put element in.
* @return the created Element instance
* @since JDOM2
*/
public Element element(int line, int col, String name, Namespace namespace);
/**
* This will create an Element
in no
* {@link org.jdom2.Namespace}
.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param name String
name of element.
* @return the created Element instance
* @since JDOM2
*/
public Element element(int line, int col, String name);
/**
* This will create a new Element
with
* the supplied (local) name, and specifies the URI
* of the {@link org.jdom2.Namespace}
the Element
* should be in, resulting it being unprefixed (in the default
* namespace).
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param name String
name of element.
* @param uri String
URI for Namespace
element
* should be in.
* @return the created Element instance
* @since JDOM2
*/
public Element element(int line, int col, String name, String uri);
/**
* This will create a new Element
with
* the supplied (local) name, and specifies the prefix and URI
* of the {@link org.jdom2.Namespace}
the Element
* should be in.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param name String
name of element.
* @param prefix the NamespacePrefic to use for this Element
* @param uri String
URI for Namespace
element
* should be in.
* @return the created Element instance
* @since JDOM2
*/
public Element element(int line, int col, String name, String prefix, String uri);
// **** constructing ProcessingInstruction ****
/**
* This will create a new ProcessingInstruction
* with the specified target and data.
*
* @param target String
target of PI.
* @param data Map
data for PI, in
* name/value pairs
* @return the created ProcessingInstruction instance
*/
public ProcessingInstruction processingInstruction(String target,
Map data);
/**
* This will create a new ProcessingInstruction
* with the specified target and data.
*
* @param target String
target of PI.
* @param data String
data for PI.
* @return the created ProcessingInstruction instance
*/
public ProcessingInstruction processingInstruction(String target,
String data);
/**
* This will create a new ProcessingInstruction
* with the specified target and no data.
*
* @param target String
target of PI.
* @return the created ProcessingInstruction instance
*/
public ProcessingInstruction processingInstruction(String target);
/**
* This will create a new ProcessingInstruction
* with the specified target and data.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param target String
target of PI.
* @param data Map
data for PI, in
* name/value pairs
* @return the created ProcessingInstruction instance
* @since JDOM2
*/
public ProcessingInstruction processingInstruction(int line, int col, String target,
Map data);
/**
* This will create a new ProcessingInstruction
* with the specified target and data.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param target String
target of PI.
* @param data String
data for PI.
* @return the created ProcessingInstruction instance
* @since JDOM2
*/
public ProcessingInstruction processingInstruction(int line, int col, String target,
String data);
/**
* This will create a new ProcessingInstruction
* with the specified target and no data.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param target String
target of PI.
* @return the created ProcessingInstruction instance
* @since JDOM2
*/
public ProcessingInstruction processingInstruction(int line, int col, String target);
// **** constructing EntityRef ****
/**
* This will create a new EntityRef
* with the supplied name.
*
* @param name String
name of element.
* @return the created EntityRef instance
*/
public EntityRef entityRef(String name);
/**
* This will create a new EntityRef
* with the supplied name, public ID, and system ID.
*
* @param name String
name of element.
* @param publicID String
public ID of element.
* @param systemID String
system ID of element.
* @return the created EntityRef instance
*/
public EntityRef entityRef(String name, String publicID, String systemID);
/**
* This will create a new EntityRef
* with the supplied name and system ID.
*
* @param name String
name of element.
* @param systemID String
system ID of element.
* @return the created EntityRef instance
*/
public EntityRef entityRef(String name, String systemID);
/**
* This will create a new EntityRef
* with the supplied name.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param name String
name of element.
* @return the created EntityRef instance
* @since JDOM2
*/
public EntityRef entityRef(int line, int col, String name);
/**
* This will create a new EntityRef
* with the supplied name, public ID, and system ID.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param name String
name of element.
* @param publicID String
public ID of element.
* @param systemID String
system ID of element.
* @return the created EntityRef instance
* @since JDOM2
*/
public EntityRef entityRef(int line, int col, String name, String publicID, String systemID);
/**
* This will create a new EntityRef
* with the supplied name and system ID.
*
* @param line The line on which this content begins.
* @param col The column on the line at which this content begins.
* @param name String
name of element.
* @param systemID String
system ID of element.
* @return the created EntityRef instance
* @since JDOM2
*/
public EntityRef entityRef(int line, int col, String name, String systemID);
// =====================================================================
// List manipulation
// =====================================================================
/**
* This will add the specified content to the specified parent instance
* @param parent The {@link Parent} to add the content to.
* @param content The {@link Content} to add
*/
public void addContent(Parent parent, Content content);
/**
* Sets a specific Attribute on an Element
* @param element The {@link Element} to set the Attribute on
* @param a The {@link Attribute} to set
*/
public void setAttribute(Element element, Attribute a);
/**
* Adds a namespace declaration to an Element
* @param element The {@link Element} to add the Namespace to
* @param additional The {@link Namespace} to add.
*/
public void addNamespaceDeclaration(Element element, Namespace additional);
/**
* Sets the 'root' Element for a Document.
* @param doc The {@link Document} to set the Root Element of.
* @param root The {@link Element} to set as the root.
*/
public void setRoot(Document doc, Element root);
}