Package com.tangosol.run.xml
Interface XmlAttribute
- All Known Implementing Classes:
SimpleAttribute
public interface XmlAttribute
An
XmlAttribute represents an Xml Attribute, defined within an
XmlElement.- Author:
- bko 2011.06.14
-
Method Summary
Modifier and TypeMethodDescriptiongetName()Get the name of theXmlAttributeGet theQualifiedNameof theXmlAttribute.Get theXmlElementin which theXmlAttributeis defined.Get theXmlValuedefined by thgeXmlAttribute.
-
Method Details
-
getName
String getName()Get the name of theXmlAttributeNote: This is the full string of the
XmlAttributename. For namespace support usegetQualifiedName()- Returns:
- The
XmlAttributename.
-
getQualifiedName
QualifiedName getQualifiedName()Get theQualifiedNameof theXmlAttribute.- Returns:
- The
QualifiedName.
-
getXmlElement
XmlElement getXmlElement()Get theXmlElementin which theXmlAttributeis defined.- Returns:
- An
XmlElement
-
getXmlValue
XmlValue getXmlValue()Get theXmlValuedefined by thgeXmlAttribute.- Returns:
- An
XmlValue
-