Interface Property
-
- All Known Implementing Classes:
PropertyImpl
public interface PropertyProperty.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetLabel()Obtains the display label for the property.java.lang.StringgetName()Obtains the name of the property.java.lang.StringgetValue()Obtains the value of the property.voidsetValue(java.lang.String value)Changes the value of the property.
-
-
-
Method Detail
-
getLabel
java.lang.String getLabel()
Obtains the display label for the property.- Returns:
- Display label for the property.
-
getName
java.lang.String getName()
Obtains the name of the property.- Returns:
- Name of the property.
-
getValue
java.lang.String getValue()
Obtains the value of the property.- Returns:
- Value of the property.
-
setValue
void setValue(java.lang.String value)
Changes the value of the property.- Parameters:
value- Value of the property.
-
-