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

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

import androidx.annotation.NonNull;

import com.mapswithme.maps.bookmarks.data.BookmarkCategory;

interface CategoryListCallback
{
  void onFooterClick();

  void onMoreOperationClick(@NonNull BookmarkCategory item);
}