org.w3c.tidy
Class DOMAttrImpl
java.lang.Object
org.w3c.tidy.DOMNodeImpl
org.w3c.tidy.DOMAttrImpl
- All Implemented Interfaces:
- org.w3c.dom.Attr, org.w3c.dom.Node
- public class DOMAttrImpl
- extends DOMNodeImpl
- implements org.w3c.dom.Attr
DOMAttrImpl
(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, 1.5, 1999/10/23 Tidy Release 27 Sep 1999, 1.6, 1999/11/01 Tidy Release 22 Oct 1999, 1.7, 1999/12/06 Tidy Release 30 Nov 1999, 1.8, 2000/01/22 Tidy Release 13 Jan 2000, 1.9, 2000/06/03 Tidy Release 30 Apr 2000, 1.10, 2000/07/22 Tidy Release 8 Jul 2000, 1.11, 2000/08/16 Tidy Release 4 Aug 2000
- 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 |
| Methods inherited from interface org.w3c.dom.Node |
getLocalName, getNamespaceURI, getPrefix, hasAttributes, isSupported, normalize, setPrefix |
avAdaptee
protected AttVal avAdaptee
DOMAttrImpl
protected DOMAttrImpl(AttVal adaptee)
getNodeValue
public java.lang.String getNodeValue()
throws org.w3c.dom.DOMException
- Specified by:
getNodeValue in interface org.w3c.dom.Node- Overrides:
getNodeValue in class DOMNodeImpl
- Throws:
org.w3c.dom.DOMException- 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- Overrides:
setNodeValue in class DOMNodeImpl
- Throws:
org.w3c.dom.DOMException- See Also:
Node.setNodeValue(java.lang.String)
getNodeName
public java.lang.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()
getParentNode
public org.w3c.dom.Node getParentNode()
- Specified by:
getParentNode in interface org.w3c.dom.Node- Overrides:
getParentNode in class DOMNodeImpl
- See Also:
Node.getParentNode()
getChildNodes
public org.w3c.dom.NodeList getChildNodes()
- Specified by:
getChildNodes in interface org.w3c.dom.Node- Overrides:
getChildNodes in class DOMNodeImpl
- See Also:
Node.getChildNodes()
getFirstChild
public org.w3c.dom.Node getFirstChild()
- Specified by:
getFirstChild in interface org.w3c.dom.Node- Overrides:
getFirstChild in class DOMNodeImpl
- See Also:
Node.getFirstChild()
getLastChild
public org.w3c.dom.Node getLastChild()
- Specified by:
getLastChild in interface org.w3c.dom.Node- Overrides:
getLastChild in class DOMNodeImpl
- See Also:
Node.getLastChild()
getPreviousSibling
public org.w3c.dom.Node getPreviousSibling()
- Specified by:
getPreviousSibling in interface org.w3c.dom.Node- Overrides:
getPreviousSibling in class DOMNodeImpl
- See Also:
Node.getPreviousSibling()
getNextSibling
public org.w3c.dom.Node getNextSibling()
- Specified by:
getNextSibling in interface org.w3c.dom.Node- Overrides:
getNextSibling in class DOMNodeImpl
- See Also:
Node.getNextSibling()
getAttributes
public org.w3c.dom.NamedNodeMap getAttributes()
- Specified by:
getAttributes in interface org.w3c.dom.Node- Overrides:
getAttributes in class DOMNodeImpl
- See Also:
Node.getAttributes()
getOwnerDocument
public org.w3c.dom.Document getOwnerDocument()
- Specified by:
getOwnerDocument in interface org.w3c.dom.Node- Overrides:
getOwnerDocument in class DOMNodeImpl
- 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- Overrides:
insertBefore in class DOMNodeImpl
- Throws:
org.w3c.dom.DOMException- 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- Overrides:
replaceChild in class DOMNodeImpl
- Throws:
org.w3c.dom.DOMException- 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- Overrides:
removeChild in class DOMNodeImpl
- Throws:
org.w3c.dom.DOMException- 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- Overrides:
appendChild in class DOMNodeImpl
- Throws:
org.w3c.dom.DOMException- See Also:
Node.appendChild(org.w3c.dom.Node)
hasChildNodes
public boolean hasChildNodes()
- Specified by:
hasChildNodes in interface org.w3c.dom.Node- Overrides:
hasChildNodes in class DOMNodeImpl
- See Also:
Node.hasChildNodes()
cloneNode
public org.w3c.dom.Node cloneNode(boolean deep)
- Specified by:
cloneNode in interface org.w3c.dom.Node- Overrides:
cloneNode in class DOMNodeImpl
- See Also:
Node.cloneNode(boolean)
getName
public java.lang.String getName()
- Specified by:
getName in interface org.w3c.dom.Attr
- See Also:
Attr.getName()
getSpecified
public boolean getSpecified()
- Specified by:
getSpecified in interface org.w3c.dom.Attr
- See Also:
Attr.getSpecified()
getValue
public java.lang.String getValue()
- Returns value of this attribute. If this attribute has a null value,
then the attribute name is returned instead.
Thanks to Brett Knights for this fix.
- Specified by:
getValue in interface org.w3c.dom.Attr
- See Also:
Attr.getValue()
setValue
public void setValue(java.lang.String value)
- Specified by:
setValue in interface org.w3c.dom.Attr
- See Also:
Attr.setValue(java.lang.String)
getOwnerElement
public org.w3c.dom.Element getOwnerElement()
- DOM2 - not implemented.
- Specified by:
getOwnerElement in interface org.w3c.dom.Attr