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 theXmlAttribute
Get theQualifiedName
of theXmlAttribute
.Get theXmlElement
in which theXmlAttribute
is defined.Get theXmlValue
defined by thgeXmlAttribute
.
-
Method Details
-
getName
String getName()Get the name of theXmlAttribute
Note: This is the full string of the
XmlAttribute
name. For namespace support usegetQualifiedName()
- Returns:
- The
XmlAttribute
name.
-
getQualifiedName
QualifiedName getQualifiedName()Get theQualifiedName
of theXmlAttribute
.- Returns:
- The
QualifiedName
.
-
getXmlElement
XmlElement getXmlElement()Get theXmlElement
in which theXmlAttribute
is defined.- Returns:
- An
XmlElement
-
getXmlValue
XmlValue getXmlValue()Get theXmlValue
defined by thgeXmlAttribute
.- Returns:
- An
XmlValue
-