Package io.keikai.model.impl
Class IconSetImpl
- java.lang.Object
-
- io.keikai.model.impl.IconSetImpl
-
- All Implemented Interfaces:
SIconSet
,Serializable
public class IconSetImpl extends Object implements SIconSet, Serializable
- Since:
- 3.8.2
- Author:
- henri
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.keikai.model.SIconSet
SIconSet.IconSetType
-
-
Constructor Summary
Constructors Constructor Description IconSetImpl()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addCfIcon(SCFIcon icon)
void
addValueObject(SCFValueObject vo)
IconSetImpl
cloneIconSet()
List<SCFIcon>
getCFIcons()
Returns the CFIcons.List<SCFValueObject>
getCFValueObjects()
Returns the value objectsstatic String
getIconSetName(String name, int iconSetId, boolean reverse, List<SCFIcon> cfIcons)
SIconSet.IconSetType
getType()
Returns the icon set nameboolean
isPercent()
Returns whether in percentboolean
isReverse()
Returns whether reverse the orderboolean
isShowValue()
Returns whether show the valuevoid
setPercent(boolean b)
void
setReverse(boolean b)
void
setShowValue(boolean b)
void
setType(SIconSet.IconSetType type)
-
-
-
Method Detail
-
getIconSetName
public static String getIconSetName(String name, int iconSetId, boolean reverse, List<SCFIcon> cfIcons)
-
getType
public SIconSet.IconSetType getType()
Description copied from interface:SIconSet
Returns the icon set name
-
setType
public void setType(SIconSet.IconSetType type)
-
getCFValueObjects
public List<SCFValueObject> getCFValueObjects()
Description copied from interface:SIconSet
Returns the value objects- Specified by:
getCFValueObjects
in interfaceSIconSet
-
addValueObject
public void addValueObject(SCFValueObject vo)
-
isPercent
public boolean isPercent()
Description copied from interface:SIconSet
Returns whether in percent
-
setPercent
public void setPercent(boolean b)
-
isReverse
public boolean isReverse()
Description copied from interface:SIconSet
Returns whether reverse the order
-
setReverse
public void setReverse(boolean b)
-
isShowValue
public boolean isShowValue()
Description copied from interface:SIconSet
Returns whether show the value- Specified by:
isShowValue
in interfaceSIconSet
-
setShowValue
public void setShowValue(boolean b)
-
cloneIconSet
public IconSetImpl cloneIconSet()
-
getCFIcons
public List<SCFIcon> getCFIcons()
Description copied from interface:SIconSet
Returns the CFIcons.- Specified by:
getCFIcons
in interfaceSIconSet
-
addCfIcon
public void addCfIcon(SCFIcon icon)
-
-