org.w3c.tidy
Class DOMNodeImpl
java.lang.Object
|
+--org.w3c.tidy.DOMNodeImpl
- All Implemented Interfaces:
- org.w3c.dom.Node
- Direct Known Subclasses:
- DOMAttrImpl, DOMCharacterDataImpl, DOMDocumentImpl, DOMDocumentTypeImpl, DOMElementImpl, DOMProcessingInstructionImpl
- public class DOMNodeImpl
- extends java.lang.Object
- implements org.w3c.dom.Node
DOMNodeImpl
(c) 1998-2000 (W3C) MIT, INRIA, Keio University
See Tidy.java for the copyright notice.
Derived from
HTML Tidy Release 4 Aug 2000
- Version:
- 1.4, 1999/09/04 DOM Support
- Author:
- Dave Raggett , Andy Quick (translation to Java)
Fields inherited from interface org.w3c.dom.Node |
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
adaptee
protected Node adaptee
DOMNodeImpl
protected DOMNodeImpl(Node adaptee)
getNodeValue
public java.lang.String getNodeValue()
throws org.w3c.dom.DOMException
- Specified by:
getNodeValue
in interface org.w3c.dom.Node
- See Also:
Node.getNodeValue()
setNodeValue
public void setNodeValue(java.lang.String nodeValue)
throws org.w3c.dom.DOMException
- Specified by:
setNodeValue
in interface org.w3c.dom.Node
- See Also:
Node.setNodeValue(java.lang.String)
getNodeName
public java.lang.String getNodeName()
- Specified by:
getNodeName
in interface org.w3c.dom.Node
- See Also:
Node.getNodeName()
getNodeType
public short getNodeType()
- Specified by:
getNodeType
in interface org.w3c.dom.Node
- See Also:
Node.getNodeType()
getParentNode
public org.w3c.dom.Node getParentNode()
- Specified by:
getParentNode
in interface org.w3c.dom.Node
- See Also:
Node.getParentNode()
getChildNodes
public org.w3c.dom.NodeList getChildNodes()
- Specified by:
getChildNodes
in interface org.w3c.dom.Node
- See Also:
Node.getChildNodes()
getFirstChild
public org.w3c.dom.Node getFirstChild()
- Specified by:
getFirstChild
in interface org.w3c.dom.Node
- See Also:
Node.getFirstChild()
getLastChild
public org.w3c.dom.Node getLastChild()
- Specified by:
getLastChild
in interface org.w3c.dom.Node
- See Also:
Node.getLastChild()
getPreviousSibling
public org.w3c.dom.Node getPreviousSibling()
- Specified by:
getPreviousSibling
in interface org.w3c.dom.Node
- See Also:
Node.getPreviousSibling()
getNextSibling
public org.w3c.dom.Node getNextSibling()
- Specified by:
getNextSibling
in interface org.w3c.dom.Node
- See Also:
Node.getNextSibling()
getAttributes
public org.w3c.dom.NamedNodeMap getAttributes()
- Specified by:
getAttributes
in interface org.w3c.dom.Node
- See Also:
Node.getAttributes()
getOwnerDocument
public org.w3c.dom.Document getOwnerDocument()
- Specified by:
getOwnerDocument
in interface org.w3c.dom.Node
- See Also:
Node.getOwnerDocument()
insertBefore
public org.w3c.dom.Node insertBefore(org.w3c.dom.Node newChild,
org.w3c.dom.Node refChild)
throws org.w3c.dom.DOMException
- Specified by:
insertBefore
in interface org.w3c.dom.Node
- See Also:
Node.insertBefore(org.w3c.dom.Node, org.w3c.dom.Node)
replaceChild
public org.w3c.dom.Node replaceChild(org.w3c.dom.Node newChild,
org.w3c.dom.Node oldChild)
throws org.w3c.dom.DOMException
- Specified by:
replaceChild
in interface org.w3c.dom.Node
- See Also:
Node.replaceChild(org.w3c.dom.Node, org.w3c.dom.Node)
removeChild
public org.w3c.dom.Node removeChild(org.w3c.dom.Node oldChild)
throws org.w3c.dom.DOMException
- Specified by:
removeChild
in interface org.w3c.dom.Node
- See Also:
Node.removeChild(org.w3c.dom.Node)
appendChild
public org.w3c.dom.Node appendChild(org.w3c.dom.Node newChild)
throws org.w3c.dom.DOMException
- Specified by:
appendChild
in interface org.w3c.dom.Node
- See Also:
Node.appendChild(org.w3c.dom.Node)
hasChildNodes
public boolean hasChildNodes()
- Specified by:
hasChildNodes
in interface org.w3c.dom.Node
- See Also:
Node.hasChildNodes()
cloneNode
public org.w3c.dom.Node cloneNode(boolean deep)
- Specified by:
cloneNode
in interface org.w3c.dom.Node
- See Also:
Node.cloneNode(boolean)
normalize
public void normalize()
- DOM2 - not implemented.
- Specified by:
normalize
in interface org.w3c.dom.Node
supports
public boolean supports(java.lang.String feature,
java.lang.String version)
- DOM2 - not implemented.
getNamespaceURI
public java.lang.String getNamespaceURI()
- DOM2 - not implemented.
- Specified by:
getNamespaceURI
in interface org.w3c.dom.Node
getPrefix
public java.lang.String getPrefix()
- DOM2 - not implemented.
- Specified by:
getPrefix
in interface org.w3c.dom.Node
setPrefix
public void setPrefix(java.lang.String prefix)
throws org.w3c.dom.DOMException
- DOM2 - not implemented.
- Specified by:
setPrefix
in interface org.w3c.dom.Node
getLocalName
public java.lang.String getLocalName()
- DOM2 - not implemented.
- Specified by:
getLocalName
in interface org.w3c.dom.Node
isSupported
public boolean isSupported(java.lang.String feature,
java.lang.String version)
- DOM2 - not implemented.
- Specified by:
isSupported
in interface org.w3c.dom.Node
hasAttributes
public boolean hasAttributes()
- DOM2 - @see org.w3c.dom.Node#hasAttributes
contributed by dlp@users.sourceforge.net
- Specified by:
hasAttributes
in interface org.w3c.dom.Node