public interface PropertyGetter
PropertyGetter is the interface to get properties from/to the
underlying subsystem.| Modifier and Type | Method and Description |
|---|---|
int |
getPropertyAvailability(int[] id_buffer,
boolean[] availability_buffer)
Retrieves the availability, the support, for the passed programming parameters.
|
int |
getPropertyInts(int[] id_buffer,
int[] value_buffer)
Gets one or more label programming parameters of type Integer.
|
int |
getPropertyRanges(int[] id_buffer,
int[][] property_ranges)
Gets one or more property ranges for the passed programming parameters.
|
int |
getPropertyStrings(int[] id_buffer,
java.lang.String[] value_buffer)
Gets one or more label programming parameters of type String.
|
int getPropertyStrings(int[] id_buffer,
java.lang.String[] value_buffer)
id_buffer - The int[] of identifiers for parameters to get.value_buffer - The String[] of values associated to the passed IDs to get.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 getPropertyInts(int[] id_buffer,
int[] value_buffer)
id_buffer - The int[] of identifiers for parameters to get.value_buffer - The int[] of values associated to the passed IDs to get.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 getPropertyRanges(int[] id_buffer,
int[][] property_ranges)
id_buffer - The int[] of identifiers for parameters to look for.property_ranges - The int[][] array of ranges associated to the passed IDs, that will be filled in.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 getPropertyAvailability(int[] id_buffer,
boolean[] availability_buffer)
id_buffer - The int[] of identifiers for parameters to look for.availability_buffer - The boolean[] of the passed IDs' availability, that will be filled in.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.