Package lumis.portal.device
Class DeviceSkinManager
- java.lang.Object
-
- lumis.portal.device.DeviceSkinManager
-
- All Implemented Interfaces:
IDeviceSkinManager
public class DeviceSkinManager extends java.lang.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 java.util.Properties
getSkin(java.lang.String name)
Returns the Skin properties of a given device name.java.util.List<java.lang.String>
getSkinList(java.lang.String name)
Returns the Skin List with the given name.java.util.Set<java.lang.String>
getSkinListNames()
Returns the list of all Skin List Names.java.util.Set<java.lang.String>
getSkinNames()
Returns the list of all Skin Names.
-
-
-
Method Detail
-
getSkin
public java.util.Properties getSkin(java.lang.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 java.util.Set<java.lang.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 java.util.List<java.lang.String> getSkinList(java.lang.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 java.util.Set<java.lang.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.
-
-