org.w3c.tidy
Class DOMAttrImpl

java.lang.Object
  |
  +--org.w3c.tidy.DOMNodeImpl
        |
        +--org.w3c.tidy.DOMAttrImpl
All Implemented Interfaces:
Attr, Node

public class DOMAttrImpl
extends DOMNodeImpl
implements 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
Author:
Dave Raggett , Andy Quick (translation to Java)

Field Summary
protected  AttVal avAdaptee
           
 
Fields inherited from class org.w3c.tidy.DOMNodeImpl
adaptee
 
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 DOMAttrImpl(AttVal adaptee)
           
 
Method Summary
 Node appendChild(Node newChild)
           
 Node cloneNode(boolean deep)
           
 NamedNodeMap getAttributes()
           
 NodeList getChildNodes()
           
 Node getFirstChild()
           
 Node getLastChild()
           
 String getName()
           
 Node getNextSibling()
           
 String getNodeName()
           
 short getNodeType()
           
 String getNodeValue()
           
 Document getOwnerDocument()
           
 Element getOwnerElement()
          DOM2 - not implemented.
 Node getParentNode()
           
 Node getPreviousSibling()
           
 TypeInfo getSchemaTypeInfo()
           
 boolean getSpecified()
           
 String getValue()
          Returns value of this attribute.
 boolean hasChildNodes()
           
 Node insertBefore(Node newChild, Node refChild)
           
 boolean isId()
           
 Node removeChild(Node oldChild)
           
 Node replaceChild(Node newChild, Node oldChild)
           
 void setNodeValue(String nodeValue)
           
 void setValue(String value)
           
 
Methods inherited from class org.w3c.tidy.DOMNodeImpl
compareDocumentPosition, getBaseURI, getFeature, getLocalName, getNamespaceURI, getPrefix, getTextContent, getUserData, hasAttributes, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, 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
compareDocumentPosition, getBaseURI, getFeature, getLocalName, getNamespaceURI, getPrefix, getTextContent, getUserData, hasAttributes, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, setPrefix, setTextContent, setUserData
 

Field Detail

avAdaptee

protected AttVal avAdaptee
Constructor Detail

DOMAttrImpl

protected DOMAttrImpl(AttVal adaptee)
Method Detail

getNodeValue

public String getNodeValue()
                    throws DOMException
Specified by:
getNodeValue in interface Node
Overrides:
getNodeValue in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.getNodeValue()

setNodeValue

public void setNodeValue(String nodeValue)
                  throws DOMException
Specified by:
setNodeValue in interface Node
Overrides:
setNodeValue in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.setNodeValue(java.lang.String)

getNodeName

public String getNodeName()
Specified by:
getNodeName in interface Node
Overrides:
getNodeName in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.getNodeName()

getNodeType

public short getNodeType()
Specified by:
getNodeType in interface Node
Overrides:
getNodeType in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.getNodeType()

getParentNode

public Node getParentNode()
Specified by:
getParentNode in interface Node
Overrides:
getParentNode in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.getParentNode()

getChildNodes

public NodeList getChildNodes()
Specified by:
getChildNodes in interface Node
Overrides:
getChildNodes in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.getChildNodes()

getFirstChild

public Node getFirstChild()
Specified by:
getFirstChild in interface Node
Overrides:
getFirstChild in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.getFirstChild()

getLastChild

public Node getLastChild()
Specified by:
getLastChild in interface Node
Overrides:
getLastChild in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.getLastChild()

getPreviousSibling

public Node getPreviousSibling()
Specified by:
getPreviousSibling in interface Node
Overrides:
getPreviousSibling in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.getPreviousSibling()

getNextSibling

public Node getNextSibling()
Specified by:
getNextSibling in interface Node
Overrides:
getNextSibling in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.getNextSibling()

getAttributes

public NamedNodeMap getAttributes()
Specified by:
getAttributes in interface Node
Overrides:
getAttributes in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.getAttributes()

getOwnerDocument

public Document getOwnerDocument()
Specified by:
getOwnerDocument in interface Node
Overrides:
getOwnerDocument in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.getOwnerDocument()

insertBefore

public Node insertBefore(Node newChild,
                         Node refChild)
                  throws DOMException
Specified by:
insertBefore in interface Node
Overrides:
insertBefore in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
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
Overrides:
replaceChild in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
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
Overrides:
removeChild in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.removeChild(org.w3c.dom.Node)

appendChild

public Node appendChild(Node newChild)
                 throws DOMException
Specified by:
appendChild in interface Node
Overrides:
appendChild in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.appendChild(org.w3c.dom.Node)

hasChildNodes

public boolean hasChildNodes()
Specified by:
hasChildNodes in interface Node
Overrides:
hasChildNodes in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.hasChildNodes()

cloneNode

public Node cloneNode(boolean deep)
Specified by:
cloneNode in interface Node
Overrides:
cloneNode in class DOMNodeImpl
Following copied from class: org.w3c.tidy.DOMNodeImpl
See Also:
Node.cloneNode(boolean)

getName

public String getName()
Specified by:
getName in interface Attr
See Also:
Attr.getName()

getSpecified

public boolean getSpecified()
Specified by:
getSpecified in interface Attr
See Also:
Attr.getSpecified()

getValue

public 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 Attr
See Also:
Attr.getValue()

setValue

public void setValue(String value)
Specified by:
setValue in interface Attr
See Also:
Attr.setValue(java.lang.String)

getOwnerElement

public Element getOwnerElement()
DOM2 - not implemented.
Specified by:
getOwnerElement in interface Attr

getSchemaTypeInfo

public TypeInfo getSchemaTypeInfo()
Specified by:
getSchemaTypeInfo in interface Attr

isId

public boolean isId()
Specified by:
isId in interface Attr


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.