Interface CsticGroupModel
-
- All Superinterfaces:
BaseModel,java.lang.Cloneable
- All Known Implementing Classes:
CsticGroupModelImpl
public interface CsticGroupModel extends BaseModel
Represents the characteristic group model.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.String>getCsticNames()java.lang.StringgetDescription()java.lang.StringgetName()voidsetCsticNames(java.util.List<java.lang.String> csticNames)voidsetDescription(java.lang.String description)voidsetName(java.lang.String name)
-
-
-
Method Detail
-
getName
java.lang.String getName()
- Returns:
- the characteristic group name
-
setName
void setName(java.lang.String name)
- Parameters:
name- the characteristic group name to set
-
getDescription
java.lang.String getDescription()
- Returns:
- the characteristic group description
-
setDescription
void setDescription(java.lang.String description)
- Parameters:
description- the characteristic group description to set
-
getCsticNames
java.util.List<java.lang.String> getCsticNames()
- Returns:
- the list of characteristic names of this group
-
setCsticNames
void setCsticNames(java.util.List<java.lang.String> csticNames)
- Parameters:
csticNames- the list of characteristic names to set
-
-