| java.lang.Object javax.xml.parsers.DocumentBuilder org.netbeans.modules.visualweb.designer.markup.RaveDocumentBuilder
RaveDocumentBuilder | public class RaveDocumentBuilder extends DocumentBuilder implements JAXPConstants(Code) | | Shamelessly COPIED from org.apache.xerces.jaxp.DocumentBuilderImpl . I did that because
I need to access the domParser field and change its document class name property,
and couldn't find a way to do that with the standard provided DocumentBuilderImpl
(Couldn't use reflection to break into the package private getDOMParser field, and
it also doesn't have an accessible constructor I could use to subclass it.)
author: Rajiv Mordani author: Edwin Goei |
getDOMParser | DOMParser getDOMParser()(Code) | | |
isNamespaceAware | public boolean isNamespaceAware()(Code) | | |
isValidating | public boolean isValidating()(Code) | | |
newDocument | public Document newDocument()(Code) | | Non-preferred: use the getDOMImplementation() method instead of this
one to get a DOM Level 2 DOMImplementation object and then use DOM
Level 2 methods to create a DOM Document object.
|
|
|