Interface CsticGroup
-
- All Known Implementing Classes:
CsticGroupImpl
public interface CsticGroupRepresents a characteristic group including the group content - the list ofCsticModel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<CsticModel>getCstics()java.lang.StringgetDescription()java.lang.StringgetName()voidsetCstics(java.util.List<CsticModel> cstics)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
-
getCstics
java.util.List<CsticModel> getCstics()
- Returns:
- the characteristic list of this characteristic group
-
setCstics
void setCstics(java.util.List<CsticModel> cstics)
- Parameters:
cstics- the characteristic list to set
-
-