com.sun.msv.verifier.jaxp
public class DocumentBuilderFactoryImpl extends DocumentBuilderFactory
This class uses another DocumentBuilderFactory implementation and adds the validation capability to it.
Constructor Summary | |
---|---|
DocumentBuilderFactoryImpl()
Creates a new instance by using the default DocumentBuilderFactory implementation
as the underlying parser. | |
DocumentBuilderFactoryImpl(DocumentBuilderFactory _factory)
Creates a new instance by specifying the underlying SAXParserFactory
implementation. | |
DocumentBuilderFactoryImpl(DocumentBuilderFactory _factory, Schema _schema) |
Method Summary | |
---|---|
Object | getAttribute(String name) |
boolean | getFeature(String name) |
boolean | isCoalescing() |
boolean | isExpandEntityReference() |
boolean | isIgnoringComments() |
boolean | isIgnoringElementContentWhitespace() |
boolean | isNamespaceAware() |
boolean | isValidating() |
DocumentBuilder | newDocumentBuilder() |
void | setAttribute(String name, Object value) |
void | setCoalescing(boolean newVal) |
void | setExpandEntityReference(boolean newVal) |
void | setFeature(String name, boolean value) |
void | setIgnoringComments(boolean newVal) |
void | setIgnoringElementContentWhitespace(boolean newVal) |
void | setNamespaceAware(boolean newVal) |
void | setValidating(boolean newVal) |