com.datalogic.device.configuration.PropertyEditor |
Known Indirect Subclasses
BarcodeManager |
BarcodeManager gives developers access to decoder related
methods of the device. |
|
Class Overview
PropertyEditor
is the interface to get and set properties
from/to the underlying subsystem.
Summary
Public Methods |
abstract
int
|
commitProperties()
Saves the configuration.
|
abstract
int
|
setPropertyInts(int[] id_buffer, int[] value_buffer)
Sets one or more label programming parameters of type Integer.
|
abstract
int
|
setPropertyStrings(int[] id_buffer, String[] value_buffer)
Sets one or more label programming parameters of type String.
|
[Expand]
Inherited Methods |
From interface
com.datalogic.device.configuration.PropertyGetter
abstract
int
|
getPropertyAvailability(int[] id_buffer, boolean[] availability_buffer)
Retrieves the availability, the support, for the passed programming parameters.
|
abstract
int
|
getPropertyInts(int[] id_buffer, int[] value_buffer)
Gets one or more label programming parameters of type Integer.
|
abstract
int
|
getPropertyRanges(int[] id_buffer, int[][] property_ranges)
Gets one or more property ranges for the passed programming parameters.
|
abstract
int
|
getPropertyStrings(int[] id_buffer, String[] value_buffer)
Gets one or more label programming parameters of type String.
|
|
Public Methods
public
abstract
int
commitProperties
()
Saves the configuration. The configuration is saved in a persistent way
across system reboots.
Returns
int
SUCCESS
in case of success,
otherwise a possible error code, matching one of the ConfigException
error constants.
public
abstract
int
setPropertyInts
(int[] id_buffer, int[] value_buffer)
Sets one or more label programming parameters of type Integer.
Parameters
id_buffer
| The int[] of identifiers for parameters to set. |
value_buffer
| The int[] of values associated to the passed IDs to set. |
Returns
int
SUCCESS
in case of success,
otherwise a possible error code, matching one of the ConfigException
error constants.
public
abstract
int
setPropertyStrings
(int[] id_buffer, String[] value_buffer)
Sets one or more label programming parameters of type String.
Parameters
id_buffer
| The int[] identifiers for parameters to set. |
value_buffer
| The String[] of values associated to the passed IDs to set. |
Returns
int
SUCCESS
in case of success,
otherwise a possible error code, matching one of the ConfigException
error constants.