-
public interface OnModelCheckedChangeListener<T extends EpoxyModel<out Object>, V>
-
-
Method Summary
Modifier and Type Method Description abstract voidonChecked(T model, V parentView, CompoundButton checkedView, boolean isChecked, int position)Called when the view bound to the model is checked. -
-
Method Detail
-
onChecked
abstract void onChecked(T model, V parentView, CompoundButton checkedView, boolean isChecked, int position)
Called when the view bound to the model is checked.
- Parameters:
model- The model that the view is bound to.parentView- The view bound to the model which received the click.checkedView- The view that received the click.isChecked- The new value for isChecked property.position- The position of the model in the adapter.
-
-
-
-