Package org.w3c.tidy
Class DOMAttrImpl
- java.lang.Object
-
- org.w3c.tidy.DOMNodeImpl
-
- org.w3c.tidy.DOMAttrImpl
-
- All Implemented Interfaces:
java.lang.Cloneable
,org.w3c.dom.Attr
,org.w3c.dom.Node
public class DOMAttrImpl extends DOMNodeImpl implements org.w3c.dom.Attr, java.lang.Cloneable
Tidy implementation of org.w3c.dom.DOMAttrImpl.- Version:
- $Revision: 738 $ ($Author: fgiust $)
- Author:
- Dave Raggett dsr@w3.org , Andy Quick ac.quick@sympatico.ca (translation to Java), Fabrizio Giustina
-
-
Field Summary
Fields Modifier and Type Field Description protected AttVal
avAdaptee
wrapped org.w3c.tidy.AttVal.-
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
Constructors Modifier Constructor Description protected
DOMAttrImpl(AttVal adaptee)
instantiates a new DOMAttrImpl which wraps the given AttVal.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.w3c.dom.Node
appendChild(org.w3c.dom.Node newChild)
Not supported.protected java.lang.Object
clone()
org.w3c.dom.Node
cloneNode(boolean deep)
org.w3c.dom.NamedNodeMap
getAttributes()
org.w3c.dom.NodeList
getChildNodes()
org.w3c.dom.Node
getFirstChild()
org.w3c.dom.Node
getLastChild()
java.lang.String
getName()
org.w3c.dom.Node
getNextSibling()
java.lang.String
getNodeName()
short
getNodeType()
java.lang.String
getNodeValue()
org.w3c.dom.Document
getOwnerDocument()
org.w3c.dom.Element
getOwnerElement()
org.w3c.dom.Node
getParentNode()
org.w3c.dom.Node
getPreviousSibling()
org.w3c.dom.TypeInfo
getSchemaTypeInfo()
boolean
getSpecified()
java.lang.String
getValue()
boolean
hasChildNodes()
org.w3c.dom.Node
insertBefore(org.w3c.dom.Node newChild, org.w3c.dom.Node refChild)
Not supported.boolean
isId()
org.w3c.dom.Node
removeChild(org.w3c.dom.Node oldChild)
Not supported.org.w3c.dom.Node
replaceChild(org.w3c.dom.Node newChild, org.w3c.dom.Node oldChild)
Not supported.void
setNodeValue(java.lang.String nodeValue)
void
setValue(java.lang.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
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
wrapped org.w3c.tidy.AttVal.
-
-
Constructor Detail
-
DOMAttrImpl
protected DOMAttrImpl(AttVal adaptee)
instantiates a new DOMAttrImpl which wraps the given AttVal.- Parameters:
adaptee
- wrapped AttVal
-
-
Method Detail
-
getNodeValue
public java.lang.String getNodeValue() throws org.w3c.dom.DOMException
- Specified by:
getNodeValue
in interfaceorg.w3c.dom.Node
- Overrides:
getNodeValue
in classDOMNodeImpl
- 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 interfaceorg.w3c.dom.Node
- Overrides:
setNodeValue
in classDOMNodeImpl
- Throws:
org.w3c.dom.DOMException
- See Also:
Node.setNodeValue(java.lang.String)
-
getNodeName
public java.lang.String getNodeName()
- Specified by:
getNodeName
in interfaceorg.w3c.dom.Node
- Overrides:
getNodeName
in classDOMNodeImpl
- See Also:
Node.getNodeName()
-
getNodeType
public short getNodeType()
- Specified by:
getNodeType
in interfaceorg.w3c.dom.Node
- Overrides:
getNodeType
in classDOMNodeImpl
- See Also:
Node.getNodeType()
-
getName
public java.lang.String getName()
- Specified by:
getName
in interfaceorg.w3c.dom.Attr
- See Also:
Attr.getName()
-
getSpecified
public boolean getSpecified()
- Specified by:
getSpecified
in interfaceorg.w3c.dom.Attr
- See Also:
Attr.getSpecified()
-
getValue
public java.lang.String getValue()
- Specified by:
getValue
in interfaceorg.w3c.dom.Attr
- See Also:
Attr.getValue()
-
setValue
public void setValue(java.lang.String value)
- Specified by:
setValue
in interfaceorg.w3c.dom.Attr
- See Also:
Attr.setValue(java.lang.String)
-
getParentNode
public org.w3c.dom.Node getParentNode()
- Specified by:
getParentNode
in interfaceorg.w3c.dom.Node
- Overrides:
getParentNode
in classDOMNodeImpl
- See Also:
Node.getParentNode()
-
getChildNodes
public org.w3c.dom.NodeList getChildNodes()
- Specified by:
getChildNodes
in interfaceorg.w3c.dom.Node
- Overrides:
getChildNodes
in classDOMNodeImpl
- See Also:
Node.getChildNodes()
-
getFirstChild
public org.w3c.dom.Node getFirstChild()
- Specified by:
getFirstChild
in interfaceorg.w3c.dom.Node
- Overrides:
getFirstChild
in classDOMNodeImpl
- See Also:
Node.getFirstChild()
-
getLastChild
public org.w3c.dom.Node getLastChild()
- Specified by:
getLastChild
in interfaceorg.w3c.dom.Node
- Overrides:
getLastChild
in classDOMNodeImpl
- See Also:
Node.getLastChild()
-
getPreviousSibling
public org.w3c.dom.Node getPreviousSibling()
- Specified by:
getPreviousSibling
in interfaceorg.w3c.dom.Node
- Overrides:
getPreviousSibling
in classDOMNodeImpl
- See Also:
Node.getPreviousSibling()
-
getNextSibling
public org.w3c.dom.Node getNextSibling()
- Specified by:
getNextSibling
in interfaceorg.w3c.dom.Node
- Overrides:
getNextSibling
in classDOMNodeImpl
- See Also:
Node.getNextSibling()
-
getAttributes
public org.w3c.dom.NamedNodeMap getAttributes()
- Specified by:
getAttributes
in interfaceorg.w3c.dom.Node
- Overrides:
getAttributes
in classDOMNodeImpl
- See Also:
Node.getAttributes()
-
getOwnerDocument
public org.w3c.dom.Document getOwnerDocument()
- Specified by:
getOwnerDocument
in interfaceorg.w3c.dom.Node
- Overrides:
getOwnerDocument
in classDOMNodeImpl
- 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
Not supported.- Specified by:
insertBefore
in interfaceorg.w3c.dom.Node
- Overrides:
insertBefore
in classDOMNodeImpl
- 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
Not supported.- Specified by:
replaceChild
in interfaceorg.w3c.dom.Node
- Overrides:
replaceChild
in classDOMNodeImpl
- 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
Not supported.- Specified by:
removeChild
in interfaceorg.w3c.dom.Node
- Overrides:
removeChild
in classDOMNodeImpl
- 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
Not supported.- Specified by:
appendChild
in interfaceorg.w3c.dom.Node
- Overrides:
appendChild
in classDOMNodeImpl
- Throws:
org.w3c.dom.DOMException
- See Also:
Node.appendChild(org.w3c.dom.Node)
-
hasChildNodes
public boolean hasChildNodes()
- Specified by:
hasChildNodes
in interfaceorg.w3c.dom.Node
- Overrides:
hasChildNodes
in classDOMNodeImpl
- See Also:
Node.hasChildNodes()
-
cloneNode
public org.w3c.dom.Node cloneNode(boolean deep)
- Specified by:
cloneNode
in interfaceorg.w3c.dom.Node
- Overrides:
cloneNode
in classDOMNodeImpl
- See Also:
Node.cloneNode(boolean)
-
getOwnerElement
public org.w3c.dom.Element getOwnerElement()
- Specified by:
getOwnerElement
in interfaceorg.w3c.dom.Attr
- See Also:
Attr.getOwnerElement()
-
getSchemaTypeInfo
public org.w3c.dom.TypeInfo getSchemaTypeInfo()
- Specified by:
getSchemaTypeInfo
in interfaceorg.w3c.dom.Attr
- See Also:
Attr.getSchemaTypeInfo()
-
isId
public boolean isId()
- Specified by:
isId
in interfaceorg.w3c.dom.Attr
- See Also:
Attr.isId()
-
clone
protected java.lang.Object clone()
- Overrides:
clone
in classjava.lang.Object
- See Also:
Object.clone()
-
-