-
public interface OnModelBoundListener<T extends EpoxyModel<out Object>, V>Used to register an onBind callback with a generated model.
-
-
Method Summary
Modifier and Type Method Description abstract voidonModelBound(T model, V view, int position)This will be called immediately after a model was bound, with the model and view that werebound together. -
-
Method Detail
-
onModelBound
abstract void onModelBound(T model, V view, int position)
This will be called immediately after a model was bound, with the model and view that werebound together.
- Parameters:
model- The model being boundview- The view that is being bound to the modelposition- The adapter position of the model
-
-
-
-