Package com.tangosol.run.xml
Interface XmlAttribute
-
- All Known Implementing Classes:
SimpleAttribute
public interface XmlAttribute
AnXmlAttribute
represents an Xml Attribute, defined within anXmlElement
.- Author:
- bko 2011.06.14
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Get the name of theXmlAttribute
QualifiedName
getQualifiedName()
Get theQualifiedName
of theXmlAttribute
.XmlElement
getXmlElement()
Get theXmlElement
in which theXmlAttribute
is defined.XmlValue
getXmlValue()
Get theXmlValue
defined by thgeXmlAttribute
.
-
-
-
Method Detail
-
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
-
-