Package lumis.portal.device
Class DeviceSkinManager
- java.lang.Object
-
- lumis.portal.device.DeviceSkinManager
-
- All Implemented Interfaces:
IDeviceSkinManager
public class DeviceSkinManager extends Object implements IDeviceSkinManager
Managers of Devices Skins. This manager is a implementation ofIDeviceSkinManager
.- Since:
- 6.0.1
- Version:
- $Revision: 17926 $ $Date: 2015-11-12 16:26:36 -0200 (Thu, 12 Nov 2015) $
-
-
Constructor Summary
Constructors Constructor Description DeviceSkinManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Properties
getSkin(String name)
Returns the Skin properties of a given device name.List<String>
getSkinList(String name)
Returns the Skin List with the given name.Set<String>
getSkinListNames()
Returns the list of all Skin List Names.Set<String>
getSkinNames()
Returns the list of all Skin Names.
-
-
-
Method Detail
-
getSkin
public Properties getSkin(String name)
Description copied from interface:IDeviceSkinManager
Returns the Skin properties of a given device name.- Specified by:
getSkin
in interfaceIDeviceSkinManager
- Parameters:
name
- name of the device.- Returns:
- the Skin properties of a given device name.
-
getSkinNames
public Set<String> getSkinNames()
Description copied from interface:IDeviceSkinManager
Returns the list of all Skin Names.- Specified by:
getSkinNames
in interfaceIDeviceSkinManager
- Returns:
- a Set of all Skin Names.
-
getSkinList
public List<String> getSkinList(String name)
Description copied from interface:IDeviceSkinManager
Returns the Skin List with the given name.- Specified by:
getSkinList
in interfaceIDeviceSkinManager
- Parameters:
name
- name of the skin list.- Returns:
- the Skin List.
-
getSkinListNames
public Set<String> getSkinListNames()
Description copied from interface:IDeviceSkinManager
Returns the list of all Skin List Names.- Specified by:
getSkinListNames
in interfaceIDeviceSkinManager
- Returns:
- a Set of all Skin List Names.
-
-