All Implemented Interfaces:
Node
All Known Implementing Classes:
DOMAttribute, FlyweightAttribute, DefaultAttribute, UserDataAttribute, BeanAttribute, DatatypeAttribute, AbstractAttribute
Attribute defines an XML attribute. An attribute may have a
name, an optional namespace and a value.
< - a href="mailto:james.strachan@metastuff.com">James Strachan $ - Revision: 1.9 $| Method from org.dom4j.Attribute Summary: |
|---|
| getData, getNamespace, getNamespacePrefix, getNamespaceURI, getQName, getQualifiedName, getValue, setData, setNamespace, setValue |
| Method from org.dom4j.Attribute Detail: |
|---|
Accesses the data of this attribute which may implement data typing
bindings such as |
Returns the |
Returns the namespace prefix of this element if one exists otherwise an
empty |
Returns the URI mapped to the namespace of this element if one exists
otherwise an empty |
Returns the |
Returns the fully qualified name of this element. This will be the same as the value returned from Node#getName() if this element has no namespace attached to this element or an expression of the form getNamespacePrefix() + ":" + getName()will be returned. |
Returns the value of the attribute. This method returns the same value as the Node#getText() method. |
Sets the data value of this attribute if this element supports data binding or calls Node#setText(String) if it doesn't. |
Sets the |
Sets the value of this attribute or this method will throw an
|