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

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

import androidx.annotation.NonNull;

class DisplayedCategories
{
  @NonNull
  public static String[] getKeys()
  {
    return nativeGetKeys();
  }

  @NonNull
  private static native String[] nativeGetKeys();
}