Interface CheckListItemInfo
-
- All Known Implementing Classes:
AbstractCheckListItem,PoolAgentTypeSelectorItem
public interface CheckListItemInfoProvides information about single check list item.- Author:
- Maxim.Manuylov Date: 10/3/11
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()Returns unique item identifier.StringgetName()Returns item name to be displayed in list.StringgetNote()Returns some note to be displayed greyed near the item name or null to not display note.StringgetParentId()Returns parent's unique item identifier or null if there is no parent.booleanisEditable()Returns true if item can be edited, false otherwise.booleanisInitiallyChecked()Returns true if item is checked by default, false otherwise.
-
-
-
Method Detail
-
getId
@NotNull String getId()
Returns unique item identifier.- Returns:
- see above
-
getParentId
@Nullable String getParentId()
Returns parent's unique item identifier or null if there is no parent.- Returns:
- see above
-
getName
@NotNull String getName()
Returns item name to be displayed in list.- Returns:
- see above
-
getNote
@Nullable String getNote()
Returns some note to be displayed greyed near the item name or null to not display note.- Returns:
- see above
-
isInitiallyChecked
boolean isInitiallyChecked()
Returns true if item is checked by default, false otherwise.- Returns:
- see above
-
isEditable
boolean isEditable()
Returns true if item can be edited, false otherwise.- Returns:
- see above
-
-