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

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

public interface NativeMapSearchListener
{
  class Result
  {
    public final String countryId;
    public final String matchedString;

    public Result(String countryId, String matchedString)
    {
      this.countryId = countryId;
      this.matchedString = matchedString;
    }
  }

  void onMapSearchResults(Result[] results, long timestamp, boolean isLast);
}