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

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

import androidx.annotation.NonNull;
import android.view.View;

public interface OnItemClickListener<T>
{
  void onItemClick(@NonNull View v, @NonNull T item);
}