Package com.xffffff.wellfed.common
Interface OnItemClickListener<Item>
-
- Type Parameters:
Item
- The type of item in the ArrayList.
- All Known Implementing Classes:
IngredientSearchActivity
,IngredientStorageFragment
,MealBookFragment
,MealPlanActivity
public interface OnItemClickListener<Item>
OnItemClickListener interface. The listener for an item click in the RecyclerView.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onItemClick(Item item)
Called on item click
-
-
-
Method Detail
-
onItemClick
void onItemClick(Item item)
Called on item click- Parameters:
item
- the item that was clicked
-
-