1package org.robolectric.annotation;
2
3import java.lang.annotation.Documented;
4import java.lang.annotation.ElementType;
5import java.lang.annotation.Retention;
6import java.lang.annotation.RetentionPolicy;
7import java.lang.annotation.Target;
8
9/**
10 * Indicates that the annotated method is hidden in the public Android API.
11 */
12@Documented
13@Retention(RetentionPolicy.RUNTIME)
14@Target({ElementType.METHOD})
15public @interface HiddenApi {
16}
17