Attribute objects inherit the {@link Node} interface, but since they are notactually child nodes of the element they describe, the DOM does not consider them part of the document tree. Thus, the {@link Node} methods{@link Node#getParent()}, {@link Node#getPreviousSibling()}, and {@link Node#getNextSibling()} all return null
for Attributeinstances.
Attribute extends {@link HasText}. To get the value of the attribute use {@link HasText#getText()}. @author $Author$ @version $Date$ $Revision: 43$
|
|