|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||
java.lang.Objectjavax.xml.parsers.DocumentBuilderFactory
net.sf.saxon.dom.DocumentBuilderFactoryImpl
public class DocumentBuilderFactoryImpl
Implementation of JAXP 1.1 DocumentBuilderFactory. To build a Document using Saxon, set the system property javax.xml.parsers.DocumentBuilderFactory to "net.sf.saxon.om.DocumentBuilderFactoryImpl" and then call DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(InputSource);
| Constructor Summary | |
|---|---|
DocumentBuilderFactoryImpl()
|
|
| Method Summary | |
|---|---|
java.lang.Object |
getAttribute(java.lang.String name)
Allows the user to retrieve specific attributes on the underlying implementation. |
boolean |
getFeature(java.lang.String name)
Get the state of the named feature. |
boolean |
isXIncludeAware()
Get state of XInclude processing. |
javax.xml.parsers.DocumentBuilder |
newDocumentBuilder()
Creates a new instance of a DocumentBuilder
using the currently configured parameters. |
void |
setAttribute(java.lang.String name,
java.lang.Object value)
Allows the user to set specific attributes on the underlying implementation. |
void |
setFeature(java.lang.String name,
boolean value)
Set a feature for this DocumentBuilderFactory and DocumentBuilders created by this factory. |
void |
setXIncludeAware(boolean state)
Set state of XInclude processing. |
| Methods inherited from class javax.xml.parsers.DocumentBuilderFactory |
|---|
getSchema, isCoalescing, isExpandEntityReferences, isIgnoringComments, isIgnoringElementContentWhitespace, isNamespaceAware, isValidating, newInstance, setCoalescing, setExpandEntityReferences, setIgnoringComments, setIgnoringElementContentWhitespace, setNamespaceAware, setSchema, setValidating |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public DocumentBuilderFactoryImpl()
| Method Detail |
|---|
public void setAttribute(java.lang.String name,
java.lang.Object value)
setAttribute in class javax.xml.parsers.DocumentBuilderFactoryname - The name of the attribute. For Saxon this must be one of the
names defined in FeatureKeysvalue - The value of the attribute.
java.lang.IllegalArgumentException - thrown if the underlying
implementation doesn't recognize the attribute.public java.lang.Object getAttribute(java.lang.String name)
getAttribute in class javax.xml.parsers.DocumentBuilderFactoryname - The name of the attribute. For Saxon this must be one of the
names defined in FeatureKeys
java.lang.IllegalArgumentException - thrown if the underlying
implementation doesn't recognize the attribute.
public javax.xml.parsers.DocumentBuilder newDocumentBuilder()
throws javax.xml.parsers.ParserConfigurationException
DocumentBuilder
using the currently configured parameters.
newDocumentBuilder in class javax.xml.parsers.DocumentBuilderFactoryDocumentBuilderImpl
javax.xml.parsers.ParserConfigurationException - if a DocumentBuilder
cannot be created which satisfies the configuration requested.
public void setFeature(java.lang.String name,
boolean value)
throws javax.xml.parsers.ParserConfigurationException
Set a feature for this DocumentBuilderFactory and DocumentBuilders created by this factory.
URIs.
Implementations may define their own features.
An ParserConfigurationException is thrown if this DocumentBuilderFactory or the
DocumentBuilders it creates cannot support the feature.
It is possible for an DocumentBuilderFactory to expose a feature value but be unable to change its state.
All implementations are required to support the 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
ErrorHandler.fatalError(org.xml.sax.SAXParseException exception).
See DocumentBuilder.setErrorHandler(org.xml.sax.ErrorHandler errorHandler).
false: the implementation will processing XML according to the XML specifications without
regard to possible implementation limits.
setFeature in class javax.xml.parsers.DocumentBuilderFactoryname - Feature name.value - Is feature state true or false.
javax.xml.parsers.ParserConfigurationException - if this DocumentBuilderFactory or the DocumentBuilders
it creates cannot support this feature.
java.lang.NullPointerException - If the name parameter is null.
public boolean getFeature(java.lang.String name)
throws javax.xml.parsers.ParserConfigurationException
Get the state of the named feature.
Feature names are fully qualifiedURIs.
Implementations may define their own features.
An ParserConfigurationException is thrown if this DocumentBuilderFactory or the
DocumentBuilders it creates cannot support the feature.
It is possible for an DocumentBuilderFactory to expose a feature value but be unable to change its state.
getFeature in class javax.xml.parsers.DocumentBuilderFactoryname - Feature name.
javax.xml.parsers.ParserConfigurationException - if this DocumentBuilderFactory
or the DocumentBuilders it creates cannot support this feature.public boolean isXIncludeAware()
Get state of XInclude processing.
isXIncludeAware in class javax.xml.parsers.DocumentBuilderFactoryjava.lang.UnsupportedOperationException - For backward compatibility, when implementations for
earlier versions of JAXP is used, this exception will be
thrown.public void setXIncludeAware(boolean state)
Set state of XInclude processing.
If XInclude markup is found in the document instance, should it be processed as specified in XML Inclusions (XInclude) Version 1.0.
XInclude processing defaults to false.
setXIncludeAware in class javax.xml.parsers.DocumentBuilderFactorystate - Set XInclude processing to true or
false
java.lang.UnsupportedOperationException - For backward compatibility, when implementations for
earlier versions of JAXP is used, this exception will be
thrown.
|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||