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

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

import android.support.annotation.IntDef;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

public class Constants
{
  public static final int TYPE_PRODUCT = 0;
  public static final int TYPE_MORE = 1;
  @Retention(RetentionPolicy.SOURCE)
  @IntDef({ TYPE_PRODUCT, TYPE_MORE })
  @interface ViewType{}
}