-
- Enclosing class:
- CheckBoxList<V>
public static interface CheckBoxList.Listener
Listener interface that can be attached to theCheckBoxList
in order to be notified on user actions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onStatusChanged(int itemIndex, boolean checked)
Called by theCheckBoxList
when the user changes the toggle state of one item
-
-
-
Method Detail
-
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
-
-