org.w3c.tidy
Class DOMDocumentImpl
java.lang.Object
org.w3c.tidy.DOMNodeImpl
org.w3c.tidy.DOMDocumentImpl
- All Implemented Interfaces:
- org.w3c.dom.Document, org.w3c.dom.Node
public class DOMDocumentImpl
- extends DOMNodeImpl
- implements org.w3c.dom.Document
DOMDocumentImpl.
- Version:
- $Revision: 738 $ ($Author: fgiust $)
- Author:
- Dave Raggett dsr@w3.org , Andy Quick ac.quick@sympatico.ca (translation to Java), Fabrizio Giustina
| Fields inherited from interface org.w3c.dom.Node |
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE |
|
Constructor Summary |
protected |
DOMDocumentImpl(Node adaptee)
Instantiates a new Dom document with a default tag table. |
| Methods inherited from class org.w3c.tidy.DOMNodeImpl |
appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData, supports |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.w3c.dom.Node |
appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData |
DOMDocumentImpl
protected DOMDocumentImpl(Node adaptee)
- Instantiates a new Dom document with a default tag table.
- Parameters:
adaptee - tidy Node
getNodeName
public String getNodeName()
- Specified by:
getNodeName in interface org.w3c.dom.Node- Overrides:
getNodeName in class DOMNodeImpl
- See Also:
Node.getNodeName()
getNodeType
public short getNodeType()
- Specified by:
getNodeType in interface org.w3c.dom.Node- Overrides:
getNodeType in class DOMNodeImpl
- See Also:
Node.getNodeType()
getDoctype
public org.w3c.dom.DocumentType getDoctype()
- Specified by:
getDoctype in interface org.w3c.dom.Document
- See Also:
Document.getDoctype()
getImplementation
public org.w3c.dom.DOMImplementation getImplementation()
- Specified by:
getImplementation in interface org.w3c.dom.Document
- See Also:
Document.getImplementation()- To Do:
- DOM level 2 getImplementation() Not implemented. Throws NOT_SUPPORTED_ERR.
getDocumentElement
public org.w3c.dom.Element getDocumentElement()
- Specified by:
getDocumentElement in interface org.w3c.dom.Document
- See Also:
Document.getDocumentElement()
createElement
public org.w3c.dom.Element createElement(String tagName)
throws org.w3c.dom.DOMException
- Specified by:
createElement in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.createElement(java.lang.String)
createDocumentFragment
public org.w3c.dom.DocumentFragment createDocumentFragment()
- Specified by:
createDocumentFragment in interface org.w3c.dom.Document
- See Also:
Document.createDocumentFragment()- To Do:
- DOM level 2 createDocumentFragment() Not implemented. Throws NOT_SUPPORTED_ERR.
createTextNode
public org.w3c.dom.Text createTextNode(String data)
- Specified by:
createTextNode in interface org.w3c.dom.Document
- See Also:
Document.createTextNode(java.lang.String)
createComment
public org.w3c.dom.Comment createComment(String data)
- Specified by:
createComment in interface org.w3c.dom.Document
- See Also:
Document.createComment(java.lang.String)
createCDATASection
public org.w3c.dom.CDATASection createCDATASection(String data)
throws org.w3c.dom.DOMException
- Specified by:
createCDATASection in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.createCDATASection(java.lang.String)- To Do:
- DOM level 2 createCDATASection() Not supported. Throws NOT_SUPPORTED_ERR.
createProcessingInstruction
public org.w3c.dom.ProcessingInstruction createProcessingInstruction(String target,
String data)
throws org.w3c.dom.DOMException
- Specified by:
createProcessingInstruction in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.createProcessingInstruction(java.lang.String, java.lang.String)- To Do:
- DOM level 2 createProcessingInstruction() Not supported. Throws NOT_SUPPORTED_ERR.
createAttribute
public org.w3c.dom.Attr createAttribute(String name)
throws org.w3c.dom.DOMException
- Specified by:
createAttribute in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.createAttribute(java.lang.String)
createEntityReference
public org.w3c.dom.EntityReference createEntityReference(String name)
throws org.w3c.dom.DOMException
- Specified by:
createEntityReference in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.createEntityReference(java.lang.String)- To Do:
- DOM level 2 createEntityReference() Not supported. Throws NOT_SUPPORTED_ERR.
getElementsByTagName
public org.w3c.dom.NodeList getElementsByTagName(String tagname)
- Specified by:
getElementsByTagName in interface org.w3c.dom.Document
- See Also:
Document.getElementsByTagName(java.lang.String)
importNode
public org.w3c.dom.Node importNode(org.w3c.dom.Node importedNode,
boolean deep)
throws org.w3c.dom.DOMException
- Specified by:
importNode in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.importNode(org.w3c.dom.Node, boolean)- To Do:
- DOM level 2 importNode() Not supported. Throws NOT_SUPPORTED_ERR.
createAttributeNS
public org.w3c.dom.Attr createAttributeNS(String namespaceURI,
String qualifiedName)
throws org.w3c.dom.DOMException
- Specified by:
createAttributeNS in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.createAttributeNS(java.lang.String, java.lang.String)- To Do:
- DOM level 2 createAttributeNS() Not supported. Throws NOT_SUPPORTED_ERR.
createElementNS
public org.w3c.dom.Element createElementNS(String namespaceURI,
String qualifiedName)
throws org.w3c.dom.DOMException
- Specified by:
createElementNS in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.createElementNS(java.lang.String, java.lang.String)- To Do:
- DOM level 2 createElementNS() Not supported. Throws NOT_SUPPORTED_ERR.
getElementsByTagNameNS
public org.w3c.dom.NodeList getElementsByTagNameNS(String namespaceURI,
String localName)
- Specified by:
getElementsByTagNameNS in interface org.w3c.dom.Document
- See Also:
Document.getElementsByTagNameNS(java.lang.String, java.lang.String)- To Do:
- DOM level 2 getElementsByTagNameNS() Not supported. Throws NOT_SUPPORTED_ERR.
getElementById
public org.w3c.dom.Element getElementById(String elementId)
- Specified by:
getElementById in interface org.w3c.dom.Document
- See Also:
Document.getElementById(java.lang.String)- To Do:
- DOM level 2 getElementById() Not implemented. Returns null.
adoptNode
public org.w3c.dom.Node adoptNode(org.w3c.dom.Node source)
throws org.w3c.dom.DOMException
- Specified by:
adoptNode in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.adoptNode(org.w3c.dom.Node)- To Do:
- DOM level 3 adoptNode() Not implemented.
getDocumentURI
public String getDocumentURI()
- Specified by:
getDocumentURI in interface org.w3c.dom.Document
- See Also:
Document.getDocumentURI()- To Do:
- DOM level 3 getDocumentURI() Not implemented. Returns null.
getDomConfig
public org.w3c.dom.DOMConfiguration getDomConfig()
- Specified by:
getDomConfig in interface org.w3c.dom.Document
- See Also:
Document.getDomConfig()- To Do:
- DOM level 3 getDomConfig() Not implemented. Returns null.
getInputEncoding
public String getInputEncoding()
- Specified by:
getInputEncoding in interface org.w3c.dom.Document
- See Also:
Document.getInputEncoding()- To Do:
- DOM level 3 getInputEncoding() Not implemented. Returns null.
getStrictErrorChecking
public boolean getStrictErrorChecking()
- Specified by:
getStrictErrorChecking in interface org.w3c.dom.Document
- See Also:
Document.getStrictErrorChecking()- To Do:
- DOM level 3 getStrictErrorChecking() Not implemented. Returns true.
getXmlEncoding
public String getXmlEncoding()
- Specified by:
getXmlEncoding in interface org.w3c.dom.Document
- See Also:
Document.getXmlEncoding()- To Do:
- DOM level 3 getXmlEncoding() Not implemented. Returns null.
getXmlStandalone
public boolean getXmlStandalone()
- Specified by:
getXmlStandalone in interface org.w3c.dom.Document
- See Also:
Document.getXmlStandalone()- To Do:
- DOM level 3 getXmlStandalone() Not implemented. Returns false.
getXmlVersion
public String getXmlVersion()
- Specified by:
getXmlVersion in interface org.w3c.dom.Document
- See Also:
Document.getXmlVersion()- To Do:
- DOM level 3 getXmlVersion() Not implemented. Always returns "1.0".
normalizeDocument
public void normalizeDocument()
- Specified by:
normalizeDocument in interface org.w3c.dom.Document
- See Also:
Document.normalizeDocument()- To Do:
- DOM level 3 normalizeDocument() Not implemented. Do nothing.
renameNode
public org.w3c.dom.Node renameNode(org.w3c.dom.Node n,
String namespaceURI,
String qualifiedName)
throws org.w3c.dom.DOMException
- Specified by:
renameNode in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.renameNode(org.w3c.dom.Node, java.lang.String, java.lang.String)- To Do:
- DOM level 3 renameNode() Not implemented. Throws NOT_SUPPORTED_ERR.
setDocumentURI
public void setDocumentURI(String documentURI)
- Specified by:
setDocumentURI in interface org.w3c.dom.Document
- See Also:
Document.setDocumentURI(java.lang.String)- To Do:
- DOM level 3 setDocumentURI() Not implemented. Do nothing.
setStrictErrorChecking
public void setStrictErrorChecking(boolean strictErrorChecking)
- Specified by:
setStrictErrorChecking in interface org.w3c.dom.Document
- See Also:
Document.setStrictErrorChecking(boolean)- To Do:
- DOM level 3 setStrictErrorChecking() Not implemented. Do nothing.
setXmlStandalone
public void setXmlStandalone(boolean xmlStandalone)
throws org.w3c.dom.DOMException
- Specified by:
setXmlStandalone in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.setXmlStandalone(boolean)- To Do:
- DOM level 3 setXmlStandalone() Not implemented. Do nothing.
setXmlVersion
public void setXmlVersion(String xmlVersion)
throws org.w3c.dom.DOMException
- Specified by:
setXmlVersion in interface org.w3c.dom.Document
- Throws:
org.w3c.dom.DOMException- See Also:
Document.setXmlVersion(java.lang.String)- To Do:
- DOM level 3 setXmlVersion() Not implemented. Do nothing.
Copyright © 2000-2010 sourceforge. All Rights Reserved.