Methods Summary |
---|
public org.w3c.dom.Node | adoptNode(org.w3c.dom.Node source)DOM Level 3
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public org.w3c.dom.Attr | createAttribute(java.lang.String name)
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public org.w3c.dom.Attr | createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public org.w3c.dom.CDATASection | createCDATASection(java.lang.String data)
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public org.w3c.dom.Comment | createComment(java.lang.String data)
return null;
|
public org.w3c.dom.DocumentFragment | createDocumentFragment()
return null;
|
public org.w3c.dom.Element | createElement(java.lang.String tagName)
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public org.w3c.dom.Element | createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public org.w3c.dom.EntityReference | createEntityReference(java.lang.String name)
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public org.w3c.dom.ProcessingInstruction | createProcessingInstruction(java.lang.String target, java.lang.String data)
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public org.w3c.dom.Text | createTextNode(java.lang.String data)
return null;
|
public org.w3c.dom.DocumentType | getDoctype()
return null;
|
public org.w3c.dom.Element | getDocumentElement()
return null;
|
public java.lang.String | getDocumentURI()The location of the document or null if undefined.
Beware that when the Document supports the feature
"HTML" , the href attribute of the HTML BASE element takes precedence
over this attribute.
return fDocumentURI;
|
public org.w3c.dom.DOMConfiguration | getDomConfig()The configuration used when Document.normalizeDocument is
invoked.
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public org.w3c.dom.Element | getElementById(java.lang.String elementId)
return null;
|
public org.w3c.dom.NodeList | getElementsByTagName(java.lang.String tagname)
return null;
|
public org.w3c.dom.NodeList | getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
return null;
|
public org.w3c.dom.DOMImplementation | getImplementation()
return null;
|
public java.lang.String | getInputEncoding()
return null;
|
public boolean | getStrictErrorChecking()An attribute specifying whether errors checking is enforced or not.
When set to false , the implementation is free to not
test every possible error case normally defined on DOM operations,
and not raise any DOMException . In case of error, the
behavior is undefined. This attribute is true by
defaults.
return false;
|
public java.lang.String | getXmlEncoding()public void setInputEncoding(String actualEncoding){
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
}
return null;
|
public boolean | getXmlStandalone()An attribute specifying, as part of the XML declaration, whether this
document is standalone.
This attribute represents the property [standalone] defined in .
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public java.lang.String | getXmlVersion()An attribute specifying, as part of the XML declaration, the version
number of this document. This is null when unspecified.
This attribute represents the property [version] defined in .
return null;
|
public org.w3c.dom.Node | importNode(org.w3c.dom.Node importedNode, boolean deep)
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public void | normalizeDocument()DOM Level 3
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public org.w3c.dom.Node | renameNode(org.w3c.dom.Node n, java.lang.String namespaceURI, java.lang.String name)DOM Level 3
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public void | setDocumentURI(java.lang.String documentURI)The location of the document or null if undefined.
Beware that when the Document supports the feature
"HTML" , the href attribute of the HTML BASE element takes precedence
over this attribute.
fDocumentURI = documentURI;
|
public void | setStrictErrorChecking(boolean strictErrorChecking)An attribute specifying whether errors checking is enforced or not.
When set to false , the implementation is free to not
test every possible error case normally defined on DOM operations,
and not raise any DOMException . In case of error, the
behavior is undefined. This attribute is true by
defaults.
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public void | setXmlStandalone(boolean standalone)An attribute specifying, as part of the XML declaration, whether this
document is standalone.
This attribute represents the property [standalone] defined in .
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|
public void | setXmlVersion(java.lang.String version)An attribute specifying, as part of the XML declaration, the version
number of this document. This is null when unspecified.
This attribute represents the property [version] defined in .
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
|