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

NativeBookingFilterListener.java « search « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fe1f4788161ef6221ffb14825ebfa4b0abf263b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.mapswithme.maps.search;

import android.support.annotation.Nullable;

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

/**
 * Native booking filter returns available hotels via this interface.
 */
@SuppressWarnings("unused")
public interface NativeBookingFilterListener
{
  /**
   * @param type Filter type which was applied.
   * @param hotels Array of hotels that meet the requirements for the filter.
   */
  void onFilterHotels(@BookingFilter.Type int type, @Nullable FeatureId[] hotels);
}