public class DocumentBuilderFactoryImpl
extends javax.xml.parsers.DocumentBuilderFactory
| Constructor and Description |
|---|
DocumentBuilderFactoryImpl() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
getAttribute(java.lang.String name) |
boolean |
getFeature(java.lang.String name)
Get the state of the named feature.
|
javax.xml.parsers.DocumentBuilder |
newDocumentBuilder() |
void |
setAttribute(java.lang.String name,
java.lang.Object value) |
void |
setFeature(java.lang.String name,
boolean value)
Set a feature for this
DocumentBuilderFactory and DocumentBuilders created by this factory. |
getSchema, isCoalescing, isExpandEntityReferences, isIgnoringComments, isIgnoringElementContentWhitespace, isNamespaceAware, isValidating, isXIncludeAware, newInstance, newInstance, setCoalescing, setExpandEntityReferences, setIgnoringComments, setIgnoringElementContentWhitespace, setNamespaceAware, setSchema, setValidating, setXIncludeAwarepublic java.lang.Object getAttribute(java.lang.String name)
getAttribute in class javax.xml.parsers.DocumentBuilderFactorypublic javax.xml.parsers.DocumentBuilder newDocumentBuilder()
throws javax.xml.parsers.ParserConfigurationException
newDocumentBuilder in class javax.xml.parsers.DocumentBuilderFactoryjavax.xml.parsers.ParserConfigurationExceptionpublic void setAttribute(java.lang.String name,
java.lang.Object value)
setAttribute in class javax.xml.parsers.DocumentBuilderFactorypublic 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.
The Saxon implementation always throws this exception.
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 enity 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.
The Saxon implementation does not support the secure processing feature.
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.