com.ibm.portal.state.accessors.deviceclass
Interface DeviceClassAccessorController
- All Superinterfaces:
- Accessor, DeviceClassAccessor, Disposable
-
public interface DeviceClassAccessorController
- extends DeviceClassAccessor
Provides read and write access to the device class information of the state.
- Since:
- 8.0
Method Summary
|
void |
setDeviceClass(DeviceClass aDeviceClass)
Sets the given device class as the device class of the state information. |
void |
setDeviceClass(java.lang.String aDeviceClassName)
Sets the given device class with the given name as the device class of
the state information. |
setDeviceClass
void setDeviceClass(DeviceClass aDeviceClass)
- Sets the given device class as the device class of the state information.
- Parameters:
- aDeviceClass - the device class to set; may be null to remove
the device class information from the state.
setDeviceClass
void setDeviceClass(java.lang.String aDeviceClassName)
- Sets the given device class with the given name as the device class of
the state information. The name must be a valid name for a device class
(or null), otherwise nothing is set in the state and the
call is silently ignored. If the name is null, the device
class information is removed from the state. *
- Parameters:
- aDeviceClassName - the name of the device class to set; may be null
to remove the device class information from the state.