public interface IModulePropertyTable
Modifier and Type | Method and Description |
---|---|
void |
addConsultProperty(String key,
String value)
Add a read only property in the model.
|
void |
addProperty(String key,
boolean value)
Add a "boolean" typed property in the model.
|
void |
addProperty(String key,
int value)
Add an "integer" typed property in the model.
|
void |
addProperty(String key,
String value)
Add a "string" typed property in the model.
|
void |
addProperty(String key,
String value,
String[] enumValues)
Add an "enumeration" typed property in the model.
|
void |
clearTable()
Removes all properties from the model.
|
void addProperty(String key, int value)
key
- the name of the property.value
- the value of the property.void addProperty(String key, String value)
key
- the name of the property.value
- the value of the property.void addProperty(String key, boolean value)
key
- the name of the property.value
- the value of the property.void addProperty(String key, String value, String[] enumValues)
key
- the name of the property.value
- the value of the property.enumValues
- the values of the property.void addConsultProperty(String key, String value)
key
- the name of the property.value
- the value of the property.void clearTable()