Interface CheckListItemInfo
-
- All Known Implementing Classes:
AbstractCheckListItem
,PoolAgentTypeSelectorItem
public interface CheckListItemInfo
Provides 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 String
getId()
Returns unique item identifier.String
getName()
Returns item name to be displayed in list.String
getNote()
Returns some note to be displayed greyed near the item name or null to not display note.String
getParentId()
Returns parent's unique item identifier or null if there is no parent.boolean
isEditable()
Returns true if item can be edited, false otherwise.boolean
isInitiallyChecked()
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
-
-