| java.lang.Object | |
| ↳ | com.datalogic.device.configuration.PropertyGroup | 
   Known Direct Subclasses
  
 | 
PropertyGroup contains properties and/or other property groups.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns the property groups contained in this group, not in the whole subtree. 
  
   | |||||||||||
Gets the integer value of the unique identifier  
  
  PropertyGroupID of the group. | |||||||||||
Gets the name of the unique identifier 
  
  PropertyGroupID of the group. | |||||||||||
Returns the properties contained in this group, not in the whole subtree. 
  
   | |||||||||||
Gets the  
  
  Property, belonging to this group's subtree, whose identifier has the given integer value in PropertyID. | |||||||||||
Gets the  
  
  Property, belonging to this group's subtree, whose identifier has the integer value defined by the given string in PropertyID. | |||||||||||
Gets the  
  
  PropertyGroup, belonging to this group's subtree, whose identifier has the given integer value in PropertyGroupID. | |||||||||||
Gets the  
  
  PropertyGroup, belonging to this group's subtree, whose identifier has the integer value defined by the given string in PropertyGroupID. | |||||||||||
Tells if this property group is completely supported by the underling decoding
 hardware. 
  
   | |||||||||||
Tells if this property group is supported by the underling decoding
 hardware. 
  
   | |||||||||||
Load the properties values contained by this group from the
 PropertyGetter. 
  
   | |||||||||||
Resets to the default value all the properties contained in the subtree. 
  
   | |||||||||||
Store the properties values contained by this property into the
 PropertyEditor persistently or not, depending from the  
  
  persist parameter. | |||||||||||
| 
  [Expand]
   Inherited Methods  | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
   
From class
  java.lang.Object
 | |||||||||||
Returns the property groups contained in this group, not in the whole subtree.
Gets the integer value of the unique identifier PropertyGroupID of the group.
  The method is meaningful only for propertyGroups of the ConfigurationManager tree not for the classes, derived from PropertyGroup, handled by BarcodeManager like for example Code39.
Gets the name of the unique identifierPropertyGroupID of the group.
 The method is meaningful only for propertyGroups of the ConfigurationManager tree not for the classes, derived from PropertyGroup, handled by BarcodeManager like for example Code39.
Returns the properties contained in this group, not in the whole subtree.
Gets the Property, belonging to this group's subtree, whose identifier has the given integer value in PropertyID.
 If a property with the given id is not found NULL is returned.
 If the returned property is not supported, get and set on the property will fail.
 The method is meaningful only for propertyGroups of the ConfigurationManager tree not for the classes, derived from PropertyGroup, handled by BarcodeManager like for example Code39.
| id | int unique identifier of the requested property. | 
        
|---|
Gets the Property, belonging to this group's subtree, whose identifier has the integer value defined by the given string in PropertyID.
 If a property with the given name is not found NULL is returned.
 If the returned property is not supported, get and set on the property will fail.
 The method is meaningful only for propertyGroups of the ConfigurationManager tree not for the classes, derived from PropertyGroup, handled by BarcodeManager like for example Code39.
| name | String defining string of the unique identifier of the requested property. | 
        
|---|
Gets the PropertyGroup, belonging to this group's subtree, whose identifier has the given integer value in PropertyGroupID.
 The method is meaningful only for propertyGroups of the ConfigurationManager tree not for the classes, derived from PropertyGroup, handled by BarcodeManager like for example Code39.
| id | int unique identifier of the requested group. | 
        
|---|
Gets the PropertyGroup, belonging to this group's subtree, whose identifier has the integer value defined by the given string in PropertyGroupID.
 The method is meaningful only for propertyGroups of the ConfigurationManager tree not for the classes, derived from PropertyGroup, handled by BarcodeManager like for example Code39.
| name | String name of the requested group. | 
        
|---|
Tells if this property group is completely supported by the underling decoding hardware.
Tells if this property group is supported by the underling decoding hardware.
Load the properties values contained by this group from the PropertyGetter.
| from | The PropertyGetter called to synchronize the current values. | 
        
|---|
int 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.
 | 
        
|---|
Resets to the default value all the properties contained in the subtree.
 To make the change persistent the commit() must be called.
 The method is meaningful only for propertyGroups of the ConfigurationManager tree not for the classes, derived from PropertyGroup, handled by BarcodeManager like for example Code39.
Store the properties values contained by this property into the
 PropertyEditor persistently or not, depending from the persist parameter.
| to | The PropertyEditor in charge of applying the desired values. | 
        
|---|---|
| persist | boolean if true the configuration is saved in a persistent way across
            system reboots with an implicit call to commitProperties(); it could happens to persists properties not related to the property group and previously changed 
            not persistently. See the BarcodeManager persistance note; | 
        
int 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.
 | 
        
|---|