Generated by
JDiff

Interface org.w3c.dom.Document

Added Methods
Node adoptNode(Node) Attempts to adopt a node from another document to this document.
String getDocumentURI() The location of the document or null if undefined or if the Document was created using DOMImplementation.createDocument.
DOMConfiguration getDomConfig() The configuration used when Document.normalizeDocument() is invoked.
String getInputEncoding() An attribute specifying the encoding used for this document at the time of the parsing.
boolean getStrictErrorChecking() An attribute specifying whether error checking is enforced or not.
String getXmlEncoding() An attribute specifying, as part of the XML declaration, the encoding of this document.
boolean getXmlStandalone() An attribute specifying, as part of the XML declaration, whether this document is standalone.
String getXmlVersion() An attribute specifying, as part of the XML declaration, the version number of this document.
void normalizeDocument() This method acts as if the document was going through a save and load cycle, putting the document in a "normal" form.
Node renameNode(Node, String, String) Rename an existing node of type ELEMENT_NODE or ATTRIBUTE_NODE.
void setDocumentURI(String) The location of the document or null if undefined or if the Document was created using DOMImplementation.createDocument.
void setStrictErrorChecking(boolean) An attribute specifying whether error checking is enforced or not.
void setXmlStandalone(boolean) An attribute specifying, as part of the XML declaration, whether this document is standalone.
void setXmlVersion(String) An attribute specifying, as part of the XML declaration, the version number of this document.