Interface CheckListCurrentStateInfoSupport
-
public interface CheckListCurrentStateInfoSupport
Provides ability to display current state info (like "5 of 34 items are shown, 14 items are checked") in check list popup.- Author:
- Maxim.Manuylov Date: 10/4/11
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
areAllItemsInitiallyUnchecked()
If true then state info would be like "..., 10 projects selected", if false - "..., 10 changes were made"String
getItemTypePluralText()
Returns item type plural text, like "projects".String
getItemTypeSingularText()
Returns item type singular text, like "project".
-
-
-
Method Detail
-
areAllItemsInitiallyUnchecked
boolean areAllItemsInitiallyUnchecked()
If true then state info would be like "..., 10 projects selected", if false - "..., 10 changes were made"- Returns:
- see above
-
getItemTypeSingularText
@NotNull String getItemTypeSingularText()
Returns item type singular text, like "project".- Returns:
- see above
-
getItemTypePluralText
@NotNull String getItemTypePluralText()
Returns item type plural text, like "projects".- Returns:
- see above
-
-