Package com.iizix.prop.ui.mlist
Interface IMLCheckBoxStateListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface IMLCheckBoxStateListener
The listener for checkbox list items.- Author:
- Christopher Mindus
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCheckStateChanged(MLCheckBox checkBox, int state)
Called when the checkbox state changes.
Method Detail
onCheckStateChanged
void onCheckStateChanged(MLCheckBox checkBox, int state)
Called when the checkbox state changes.- Parameters:
checkBox
- The checkbox.state
- The new check state: 0=unchecked, 1=checked, 2=third state.