public interface PropertyEditor extends PropertyGetter
PropertyEditor is the interface to get and set properties
from/to the underlying subsystem.| Modifier and Type | Method and Description |
|---|---|
int |
commitProperties()
Saves the configuration.
|
int |
setPropertyInts(int[] id_buffer,
int[] value_buffer)
Sets one or more label programming parameters of type Integer.
|
int |
setPropertyStrings(int[] id_buffer,
java.lang.String[] value_buffer)
Sets one or more label programming parameters of type String.
|
getPropertyAvailability, getPropertyInts, getPropertyRanges, getPropertyStringsint setPropertyInts(int[] id_buffer,
int[] value_buffer)
id_buffer - The int[] of identifiers for parameters to set.value_buffer - The int[] of values associated to the passed IDs to set.int ConfigException.SUCCESS in case of success,
otherwise a possible error code, matching one of the ConfigException error constants.ConfigException - in case of error, when exceptions are enabled through the ErrorManager singleton.int setPropertyStrings(int[] id_buffer,
java.lang.String[] value_buffer)
id_buffer - The int[] identifiers for parameters to set.value_buffer - The String[] of values associated to the passed IDs to set.int ConfigException.SUCCESS in case of success,
otherwise a possible error code, matching one of the ConfigException error constants.ConfigException - in case of error, when exceptions are enabled through the ErrorManager singleton.int commitProperties()
int ConfigException.SUCCESS in case of success,
otherwise a possible error code, matching one of the ConfigException error constants.ConfigException - in case of error, when exceptions are enabled through the ErrorManager singleton.