Package alpine.model
Interface IConfigProperty
-
- All Known Implementing Classes:
ConfigProperty
public interface IConfigPropertyInterface definition for configuration properties.- Since:
- 1.4.3
- Author:
- Steve Springett
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIConfigProperty.PropertyType
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()StringgetGroupName()longgetId()StringgetPropertyName()IConfigProperty.PropertyTypegetPropertyType()StringgetPropertyValue()voidsetDescription(String description)voidsetGroupName(String groupName)voidsetId(long id)voidsetPropertyName(String propertyName)voidsetPropertyType(IConfigProperty.PropertyType propertyType)voidsetPropertyValue(String propertyValue)
-
-
-
Method Detail
-
getId
long getId()
-
setId
void setId(long id)
-
getGroupName
String getGroupName()
-
setGroupName
void setGroupName(String groupName)
-
getPropertyName
String getPropertyName()
-
setPropertyName
void setPropertyName(String propertyName)
-
getPropertyValue
String getPropertyValue()
-
setPropertyValue
void setPropertyValue(String propertyValue)
-
getPropertyType
IConfigProperty.PropertyType getPropertyType()
-
setPropertyType
void setPropertyType(IConfigProperty.PropertyType propertyType)
-
getDescription
String getDescription()
-
setDescription
void setDescription(String description)
-
-