org.w3c.tidy
Class DOMNodeImpl
java.lang.Object
|
+--org.w3c.tidy.DOMNodeImpl
- All Implemented Interfaces:
- Node
- Direct Known Subclasses:
- DOMAttrImpl, DOMCharacterDataImpl, DOMDocumentImpl, DOMDocumentTypeImpl, DOMElementImpl, DOMProcessingInstructionImpl
- public class DOMNodeImpl
- extends Object
- implements 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_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 |
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 String getNodeValue()
throws DOMException
- Specified by:
getNodeValue
in interface Node
- See Also:
Node.getNodeValue()
setNodeValue
public void setNodeValue(String nodeValue)
throws DOMException
- Specified by:
setNodeValue
in interface Node
- See Also:
Node.setNodeValue(java.lang.String)
getNodeName
public String getNodeName()
- Specified by:
getNodeName
in interface Node
- See Also:
Node.getNodeName()
getNodeType
public short getNodeType()
- Specified by:
getNodeType
in interface Node
- See Also:
Node.getNodeType()
getParentNode
public Node getParentNode()
- Specified by:
getParentNode
in interface Node
- See Also:
Node.getParentNode()
getChildNodes
public NodeList getChildNodes()
- Specified by:
getChildNodes
in interface Node
- See Also:
Node.getChildNodes()
getFirstChild
public Node getFirstChild()
- Specified by:
getFirstChild
in interface Node
- See Also:
Node.getFirstChild()
getLastChild
public Node getLastChild()
- Specified by:
getLastChild
in interface Node
- See Also:
Node.getLastChild()
getPreviousSibling
public Node getPreviousSibling()
- Specified by:
getPreviousSibling
in interface Node
- See Also:
Node.getPreviousSibling()
getNextSibling
public Node getNextSibling()
- Specified by:
getNextSibling
in interface Node
- See Also:
Node.getNextSibling()
getAttributes
public NamedNodeMap getAttributes()
- Specified by:
getAttributes
in interface Node
- See Also:
Node.getAttributes()
getOwnerDocument
public Document getOwnerDocument()
- Specified by:
getOwnerDocument
in interface Node
- See Also:
Node.getOwnerDocument()
insertBefore
public Node insertBefore(Node newChild,
Node refChild)
throws DOMException
- Specified by:
insertBefore
in interface Node
- See Also:
Node.insertBefore(org.w3c.dom.Node, org.w3c.dom.Node)
replaceChild
public Node replaceChild(Node newChild,
Node oldChild)
throws DOMException
- Specified by:
replaceChild
in interface Node
- See Also:
Node.replaceChild(org.w3c.dom.Node, org.w3c.dom.Node)
removeChild
public Node removeChild(Node oldChild)
throws DOMException
- Specified by:
removeChild
in interface Node
- See Also:
Node.removeChild(org.w3c.dom.Node)
appendChild
public Node appendChild(Node newChild)
throws DOMException
- Specified by:
appendChild
in interface Node
- See Also:
Node.appendChild(org.w3c.dom.Node)
hasChildNodes
public boolean hasChildNodes()
- Specified by:
hasChildNodes
in interface Node
- See Also:
Node.hasChildNodes()
cloneNode
public Node cloneNode(boolean deep)
- Specified by:
cloneNode
in interface Node
- See Also:
Node.cloneNode(boolean)
normalize
public void normalize()
- DOM2 - not implemented.
- Specified by:
normalize
in interface Node
supports
public boolean supports(String feature,
String version)
- DOM2 - not implemented.
getNamespaceURI
public String getNamespaceURI()
- DOM2 - not implemented.
- Specified by:
getNamespaceURI
in interface Node
getPrefix
public String getPrefix()
- DOM2 - not implemented.
- Specified by:
getPrefix
in interface Node
setPrefix
public void setPrefix(String prefix)
throws DOMException
- DOM2 - not implemented.
- Specified by:
setPrefix
in interface Node
getLocalName
public String getLocalName()
- DOM2 - not implemented.
- Specified by:
getLocalName
in interface Node
isSupported
public boolean isSupported(String feature,
String version)
- DOM2 - not implemented.
- Specified by:
isSupported
in interface Node
hasAttributes
public boolean hasAttributes()
- DOM2 - @see org.w3c.dom.Node#hasAttributes
contributed by dlp@users.sourceforge.net
- Specified by:
hasAttributes
in interface Node
getBaseURI
public String getBaseURI()
- Specified by:
getBaseURI
in interface Node
compareDocumentPosition
public short compareDocumentPosition(Node other)
throws DOMException
- Specified by:
compareDocumentPosition
in interface Node
getTextContent
public String getTextContent()
throws DOMException
- Specified by:
getTextContent
in interface Node
setTextContent
public void setTextContent(String textContent)
throws DOMException
- Specified by:
setTextContent
in interface Node
isSameNode
public boolean isSameNode(Node other)
- Specified by:
isSameNode
in interface Node
lookupPrefix
public String lookupPrefix(String namespaceURI)
- Specified by:
lookupPrefix
in interface Node
isDefaultNamespace
public boolean isDefaultNamespace(String namespaceURI)
- Specified by:
isDefaultNamespace
in interface Node
lookupNamespaceURI
public String lookupNamespaceURI(String prefix)
- Specified by:
lookupNamespaceURI
in interface Node
isEqualNode
public boolean isEqualNode(Node arg)
- Specified by:
isEqualNode
in interface Node
getFeature
public Object getFeature(String feature,
String version)
- Specified by:
getFeature
in interface Node
setUserData
public Object setUserData(String key,
Object data,
UserDataHandler handler)
- Specified by:
setUserData
in interface Node
getUserData
public Object getUserData(String key)
- Specified by:
getUserData
in interface Node
Copyright © 1998-2000 World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights reserved.