Package org.apache.uima.search
Interface Attribute
-
- All Superinterfaces:
java.io.Serializable
,XMLizable
- All Known Implementing Classes:
Attribute_impl
public interface Attribute extends XMLizable, java.io.Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
Gets the name of this attribute.java.lang.String
getValue()
Gets the value of this attribute.void
setName(java.lang.String aName)
Sets the name of this attribute.void
setValue(java.lang.String aValue)
Sets the value of this attribute.-
Methods inherited from interface org.apache.uima.util.XMLizable
buildFromXMLElement, buildFromXMLElement, toXML, toXML, toXML, toXML
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets the name of this attribute.- Returns:
- the name of this attribute
-
setName
void setName(java.lang.String aName)
Sets the name of this attribute.- Parameters:
aName
- the name of this attribute
-
getValue
java.lang.String getValue()
Gets the value of this attribute.- Returns:
- the value of this attribute
-
setValue
void setValue(java.lang.String aValue)
Sets the value of this attribute.- Parameters:
aValue
- the value of this attribute
-
-