org.jdom.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
JDOM is a Java-oriented object model which models XML documents.
It provides a Java-centric means of generating and manipulating
XML documents. While JDOM interoperates well with existing
standards such as the Simple API for XML (SAX) and the Document
Object Model (DOM), it is not an abstraction layer or
enhancement to those APIs. Rather, it seeks to provide a robust,
light-weight means of reading and writing XML data without the
complex and memory-consumptive options that current API
offerings provide.
built July 23 2009
The newest version!
/*--
$Id: JDOMFactory.java,v 1.9 2007/11/10 05:28:59 jhunter Exp $
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.jdom;
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.
*
* @version $Revision: 1.9 $, $Date: 2007/11/10 05:28:59 $
* @author Ken Rune Holland
* @author Phil Nelson
* @author Bradley S. Huffman
*/
public interface JDOMFactory {
// **** constructing Attributes ****
/**
*
* This will create a new Attribute
with the
* specified (local) name and value, and in the provided
* {@link org.jdom.Namespace}
.
*
*
* @param name String
name of Attribute
.
* @param value String
value for new attribute.
*/
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.jdom.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.
*/
public Attribute attribute(String name, String value,
int 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.jdom.Namespace}
.
*
* Note: This actually explicitly puts the
* Attribute
in the "empty" Namespace
* ({@link org.jdom.Namespace#NO_NAMESPACE}
).
*
*
* @param name String
name of Attribute
.
* @param value String
value for new attribute.
*/
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.jdom.Namespace}
.
*
* Note: This actually explicitly puts the
* Attribute
in the "empty" Namespace
* ({@link org.jdom.Namespace#NO_NAMESPACE}
).
*
*
* @param name String
name of Attribute
.
* @param value String
value for new attribute.
* @param type int
type for new attribute.
*/
public Attribute attribute(String name, String value, int type);
// **** constructing CDATA ****
/**
* This creates the CDATA with the supplied text.
*
* @param str String
content of CDATA.
*/
public CDATA cdata(String str);
// **** constructing Text ****
/**
* This creates the Text with the supplied text.
*
* @param str String
content of Text.
*/
public Text text(String str);
// **** constructing Comment ****
/**
* This creates the comment with the supplied text.
*
* @param text String
content of comment.
*/
public Comment comment(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
*/
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
*/
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.
*/
public DocType docType(String elementName);
// **** constructing Document
/**
* This will create a new Document
,
* with the supplied {@link org.jdom.Element}
* as the root element and the supplied
* {@link org.jdom.DocType}
declaration.
*
* @param rootElement Element
for document root.
* @param docType DocType
declaration.
*/
public Document document(Element rootElement, DocType docType);
/**
* This will create a new Document
,
* with the supplied {@link org.jdom.Element}
* as the root element and the supplied
* {@link org.jdom.DocType}
declaration.
*
* @param rootElement Element
for document root.
* @param docType DocType
declaration.
* @param baseURI the URI from which this doucment was loaded.
*/
public Document document(Element rootElement, DocType docType, String baseURI);
/**
* This will create a new Document
,
* with the supplied {@link org.jdom.Element}
* as the root element, and no {@link org.jdom.DocType}
* declaration.
*
* @param rootElement Element
for document root
*/
public Document document(Element rootElement);
// **** constructing Elements ****
/**
* This will create a new Element
* with the supplied (local) name, and define
* the {@link org.jdom.Namespace}
to be used.
*
* @param name String
name of element.
* @param namespace Namespace
to put element in.
*/
public Element element(String name, Namespace namespace);
/**
* This will create an Element
in no
* {@link org.jdom.Namespace}
.
*
* @param name String
name of element.
*/
public Element element(String name);
/**
* This will create a new Element
with
* the supplied (local) name, and specifies the URI
* of the {@link org.jdom.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.
*/
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.jdom.Namespace}
the Element
* should be in.
*
* @param name String
name of element.
* @param uri String
URI for Namespace
element
* should be in.
*/
public Element element(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
*/
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.
*/
public ProcessingInstruction processingInstruction(String target,
String data);
// **** constructing EntityRef ****
/**
* This will create a new EntityRef
* with the supplied name.
*
* @param name String
name of element.
*/
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.
*/
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.
*/
public EntityRef entityRef(String name, String systemID);
// =====================================================================
// List manipulation
// =====================================================================
public void addContent(Parent parent, Content content);
public void setAttribute(Element element, Attribute a);
public void addNamespaceDeclaration(Element element, Namespace additional);
}