Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ItemSelectedListener.java « gallery « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b96fb31c16604e96d3ec8e284a18789c54d9dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.mapswithme.maps.gallery;

import androidx.annotation.NonNull;

public interface ItemSelectedListener<I>
{
  void onItemSelected(@NonNull I item, int position);

  void onMoreItemSelected(@NonNull I item);

  void onActionButtonSelected(@NonNull I item, int position);
}