MinAndroidSdkLevel.java revision 5f1c94371a64b3196d4be9466099bb892df9b88e
1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5package org.chromium.base.test.util;
6
7import java.lang.annotation.ElementType;
8import java.lang.annotation.Inherited;
9import java.lang.annotation.Retention;
10import java.lang.annotation.RetentionPolicy;
11import java.lang.annotation.Target;
12
13@Inherited
14@Retention(RetentionPolicy.RUNTIME)
15@Target({ElementType.TYPE})
16public @interface MinAndroidSdkLevel {
17    int value() default 0;
18}
19
20