javax.xml.parsers.DocumentBuilderFactory Maven / Gradle / Ivy
/*
* Copyright 1990-2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version
* 2 only, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License version 2 for more details (a copy is
* included at /legal/license.txt).
*
* You should have received a copy of the GNU General Public License
* version 2 along with this work; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 or visit www.sun.com if you need additional
* information or have any questions.
*/
package javax.xml.parsers;
/**
* Defines a factory API that enables applications to obtain a
* parser that produces DOM object trees from XML documents.
*/
public abstract class DocumentBuilderFactory
{
/** The default property name according to the JAXP spec */
private static final String DEFAULT_PROPERTY_NAME =
"javax.xml.parsers.DocumentBuilderFactory";
private boolean validating = false;
private boolean namespaceAware = false;
private boolean whitespace = false;
private boolean expandEntityRef = true;
private boolean ignoreComments = false;
private boolean coalescing = false;
protected DocumentBuilderFactory ()
{
}
/**
* Obtain a new instance of a
* DocumentBuilderFactory
. This static method creates
* a new factory instance.
* This method uses the following ordered lookup procedure to determine
* the DocumentBuilderFactory
implementation class to
* load:
*
* -
* Use the
javax.xml.parsers.DocumentBuilderFactory
system
* property.
*
* -
* Platform default
DocumentBuilderFactory
instance.
*
*
*
* Once an application has obtained a reference to a
* DocumentBuilderFactory
it can use the factory to
* configure and obtain parser instances.
*
*
* Tip for Trouble-shooting on CDC
* Setting the jaxp.debug
system property will cause
* this method to print a lot of debug messages
* to System.err about what it is doing and where it is looking at.
*
* If you have problems loading {@link DocumentBuilder}s, try:
*
* java -Djaxp.debug=1 YourProgram ....
*
*
* @return New instance of a DocumentBuilderFactory
*
* @exception FactoryConfigurationError if the implementation is not
* available or cannot be instantiated.
*/
public static DocumentBuilderFactory newInstance()
{
try {
String fname = System.getProperty(DEFAULT_PROPERTY_NAME);
if(fname == null)
fname = "com.sun.ukit.dom.DocBuilderFactory";
return (DocumentBuilderFactory) Class.forName(fname).newInstance();
} catch (java.lang.Throwable ex) {
throw new FactoryConfigurationError(ex.toString());
}
}
/**
* Creates a new instance of a {@link javax.xml.parsers.DocumentBuilder}
* using the currently configured parameters.
*
* @exception ParserConfigurationException if a DocumentBuilder
* cannot be created which satisfies the configuration requested.
* @return A new instance of a DocumentBuilder.
*/
public abstract DocumentBuilder newDocumentBuilder()
throws ParserConfigurationException;
/**
* Specifies that the parser produced by this code will
* provide support for XML namespaces. By default the value of this is set
* to false
*
* @param awareness true
if the parser produced will provide support
* for XML namespaces; false
otherwise.
*/
public void setNamespaceAware(boolean awareness)
{
this.namespaceAware = awareness;
}
/**
* Specifies that the parser produced by this code will
* validate documents as they are parsed. By default the value of this
* is set to false
.
*
*
* Note that "the validation" here means
* a validating
* parser as defined in the XML recommendation.
* In other words, it essentially just controls the DTD validation.
*
*
* @param validating true
if the parser produced will validate documents
* as they are parsed; false
otherwise.
*/
public void setValidating(boolean validating)
{
this.validating = validating;
}
/**
* Specifies that the parsers created by this factory must eliminate
* whitespace in element content (sometimes known loosely as
* 'ignorable whitespace') when parsing XML documents (see XML Rec
* 2.10). Note that only whitespace which is directly contained within
* element content that has an element only content model (see XML
* Rec 3.2.1) will be eliminated. Due to reliance on the content model
* this setting requires the parser to be in validating mode. By default
* the value of this is set to false
.
*
* @param whitespace true
if the parser created must eliminate whitespace
* in the element content when parsing XML documents;
* false
otherwise.
*/
public void setIgnoringElementContentWhitespace(boolean whitespace)
{
this.whitespace = whitespace;
}
/**
* Specifies that the parser produced by this code will
* expand entity reference nodes. By default the value of this is set to
* true
*
* @param expandEntityRef true
if the parser produced will expand entity
* reference nodes; false
otherwise.
*/
public void setExpandEntityReferences(boolean expandEntityRef)
{
this.expandEntityRef = expandEntityRef;
}
/**
* Specifies that the parser produced by this code will
* ignore comments. By default the value of this is set to false
*
.
*
* @param ignoreComments boolean
value to ignore comments during processing
*/
public void setIgnoringComments(boolean ignoreComments)
{
this.ignoreComments = ignoreComments;
}
/**
* Specifies that the parser produced by this code will
* convert CDATA nodes to Text nodes and append it to the
* adjacent (if any) text node. By default the value of this is set to
* false
*
* @param coalescing true
if the parser produced will convert CDATA nodes
* to Text nodes and append it to the adjacent (if any)
* text node; false
otherwise.
*/
public void setCoalescing(boolean coalescing)
{
this.coalescing = coalescing;
}
/**
* Indicates whether or not the factory is configured to produce
* parsers which are namespace aware.
*
* @return true
if the factory is configured to produce parsers which
* are namespace aware; false
otherwise.
*/
public boolean isNamespaceAware()
{
return namespaceAware;
}
/**
* Indicates whether or not the factory is configured to produce
* parsers which validate the XML content during parse.
*
* @return true
if the factory is configured to produce parsers
* which validate the XML content during parse; false
otherwise.
*/
public boolean isValidating()
{
return validating;
}
/**
* Indicates whether or not the factory is configured to produce
* parsers which ignore ignorable whitespace in element content.
*
* @return true
if the factory is configured to produce parsers
* which ignore ignorable whitespace in element content;
* false
otherwise.
*/
public boolean isIgnoringElementContentWhitespace()
{
return whitespace;
}
/**
* Indicates whether or not the factory is configured to produce
* parsers which expand entity reference nodes.
*
* @return true
if the factory is configured to produce parsers
* which expand entity reference nodes; false
otherwise.
*/
public boolean isExpandEntityReferences()
{
return expandEntityRef;
}
/**
* Indicates whether or not the factory is configured to produce
* parsers which ignores comments.
*
* @return true
if the factory is configured to produce parsers
* which ignores comments; false
otherwise.
*/
public boolean isIgnoringComments()
{
return ignoreComments;
}
/**
* Indicates whether or not the factory is configured to produce
* parsers which converts CDATA nodes to Text nodes and appends it to
* the adjacent (if any) Text node.
*
* @return true
if the factory is configured to produce parsers
* which converts CDATA nodes to Text nodes and appends it to
* the adjacent (if any) Text node; false
otherwise.
*/
public boolean isCoalescing()
{
return coalescing;
}
/**
* Allows the user to set specific attributes on the underlying
* implementation.
* @param name The name of the attribute.
* @param value The value of the attribute.
* @exception IllegalArgumentException thrown if the underlying
* implementation doesn't recognize the attribute.
*/
public abstract void setAttribute(String name, Object value)
throws IllegalArgumentException;
/**
* Allows the user to retrieve specific attributes on the underlying
* implementation.
* @param name The name of the attribute.
* @return value The value of the attribute.
* @exception IllegalArgumentException thrown if the underlying
* implementation doesn't recognize the attribute.
*/
public abstract Object getAttribute(String name)
throws IllegalArgumentException;
/**
* Set a feature for this DocumentBuilderFactory
and
* DocumentBuilder
s created by this factory.
*
*
* Feature names are fully qualified URIs.
* Implementations may define their own features.
* An {@link ParserConfigurationException} is thrown if this
* DocumentBuilderFactory
or the
* DocumentBuilder
s it creates cannot support the feature.
* It is possible for an DocumentBuilderFactory
to expose
* a feature value but be unable to change its state. A null
* feature name parameter causes the XML reader to throw a
* NullPointerException
.
*
*
* All implementations are required to support the
* {@link javax.xml.XMLConstants#FEATURE_SECURE_PROCESSING} feature.
* When the feature is:
*
* -
*
true
: the implementation will limit XML processing to
* conform to implementation limits. Examples include entity expansion
* limits and XML Schema constructs that would consume large amounts of
* resources. If XML processing is limited for security reasons, it will
* be reported via a call to the registered
* {@link org.xml.sax.ErrorHandler#fatalError(SAXParseException exception)}.
* See {@link DocumentBuilder#setErrorHandler(org.xml.sax.ErrorHandler errorHandler)}.
*
* -
*
false
: the implementation will processing XML according
* to the XML specifications without regard to possible implementation
* limits.
*
*
*
* @param name Feature name.
* @param value Is feature state true
or false
.
*
* @throws ParserConfigurationException if this DocumentBuilderFactory
* or the DocumentBuilder
s it creates cannot support this
* feature.
* @throws NullPointerException If the name
parameter is null.
*/
public abstract void setFeature(String name, boolean value)
throws ParserConfigurationException;
/**
* Get the state of the named feature.
*
*
* Feature names are fully qualified URIs.
* Implementations may define their own features.
* A {@link ParserConfigurationException} is thrown if this
* DocumentBuilderFactory
or the
* DocumentBuilder
s it creates cannot support the feature.
* It is possible for an DocumentBuilderFactory
to expose
* a feature value but be unable to change its state.
* A NullPointerException
is thrown if the feature name
* parameter is null.
*
*
* @param name Feature name.
*
* @return State of the named feature.
*
* @throws ParserConfigurationException if this
* DocumentBuilderFactory
or the
* DocumentBuilder
s it creates cannot support this feature.
*/
public abstract boolean getFeature(String name)
throws ParserConfigurationException;
}