public class

DocumentBuilderFactoryImpl

extends DocumentBuilderFactory
java.lang.Object
   ↳ javax.xml.parsers.DocumentBuilderFactory
     ↳ org.apache.xerces.jaxp.DocumentBuilderFactoryImpl

Summary

Public Constructors
DocumentBuilderFactoryImpl()
Public Methods
Object getAttribute(String name)
Allows the user to retrieve specific attributes on the underlying implementation.
boolean getFeature(String name)
Schema getSchema()
boolean isXIncludeAware()
DocumentBuilder newDocumentBuilder()
Creates a new instance of a javax.xml.parsers.DocumentBuilder using the currently configured parameters.
void setAttribute(String name, Object value)
Allows the user to set specific attributes on the underlying implementation.
void setFeature(String name, boolean value)
void setSchema(Schema grammar)
void setXIncludeAware(boolean state)
[Expand]
Inherited Methods
From class javax.xml.parsers.DocumentBuilderFactory
From class java.lang.Object

Public Constructors

public DocumentBuilderFactoryImpl ()

Public Methods

public Object getAttribute (String name)

Allows the user to retrieve specific attributes on the underlying implementation.

public boolean getFeature (String name)

Throws
ParserConfigurationException

public Schema getSchema ()

public boolean isXIncludeAware ()

public DocumentBuilder newDocumentBuilder ()

Creates a new instance of a javax.xml.parsers.DocumentBuilder using the currently configured parameters.

Throws
ParserConfigurationException

public void setAttribute (String name, Object value)

Allows the user to set specific attributes on the underlying implementation.

Parameters
name name of attribute
value null means to remove attribute

public void setFeature (String name, boolean value)

Throws
ParserConfigurationException

public void setSchema (Schema grammar)

public void setXIncludeAware (boolean state)