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

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

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

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