javax.xml.parsers
Class DocumentBuilderFactory
java.lang.Object
|
+--javax.xml.parsers.DocumentBuilderFactory
- public abstract class DocumentBuilderFactory
- extends java.lang.Object
DocumentBuilderFactory is used to resolve the problem that the
W3C DOM APIs don't include portable bootstrapping.
- Version:
- $Id: DocumentBuilderFactory.java,v 1.1 2002/04/13 00:12:05 yoren Exp $
- Author:
- Andrew Selkirk, David Brownell
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DocumentBuilderFactory
protected DocumentBuilderFactory()
getAttribute
public abstract java.lang.Object getAttribute(java.lang.String name)
throws java.lang.IllegalArgumentException
java.lang.IllegalArgumentException
isCoalescing
public boolean isCoalescing()
isExpandEntityReferences
public boolean isExpandEntityReferences()
isIgnoringComments
public boolean isIgnoringComments()
isIgnoringElementContentWhitespace
public boolean isIgnoringElementContentWhitespace()
isNamespaceAware
public boolean isNamespaceAware()
isValidating
public boolean isValidating()
newDocumentBuilder
public abstract DocumentBuilder newDocumentBuilder()
throws ParserConfigurationException
ParserConfigurationException
newInstance
public static DocumentBuilderFactory newInstance()
setAttribute
public abstract void setAttribute(java.lang.String name,
java.lang.Object value)
throws java.lang.IllegalArgumentException
java.lang.IllegalArgumentException
setCoalescing
public void setCoalescing(boolean value)
setExpandEntityReferences
public void setExpandEntityReferences(boolean value)
setIgnoringComments
public void setIgnoringComments(boolean value)
setIgnoringElementContentWhitespace
public void setIgnoringElementContentWhitespace(boolean value)
setNamespaceAware
public void setNamespaceAware(boolean value)
setValidating
public void setValidating(boolean value)