- Enclosing class:
CheckBoxList<V>
public static interface CheckBoxList.Listener
Listener interface that can be attached to the
CheckBoxList
in order to be notified on user actions-
Method Summary
Modifier and TypeMethodDescriptionvoid
onStatusChanged
(int itemIndex, boolean checked) Called by theCheckBoxList
when the user changes the toggle state of one item
-
Method Details
-
onStatusChanged
void onStatusChanged(int itemIndex, boolean checked) Called by theCheckBoxList
when the user changes the toggle state of one item- Parameters:
itemIndex
- Index of the item that was toggledchecked
- If the state of the item is now checked, this will betrue
, otherwisefalse
-