xref: /aosp_15_r20/external/robolectric/annotations/src/main/java/org/robolectric/annotation/InDevelopment.java (revision e6ba16074e6af37d123cb567d575f496bf0a58ee)
1 package org.robolectric.annotation;
2 
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.ElementType;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.RetentionPolicy;
7 import java.lang.annotation.Target;
8 
9 /**
10  * InDevelopment applies to @Implementation methods and @Implements classes that are affected by
11  * changes in unreleased versions of Android. <br>
12  * Only unreleased versions of android, as defined in the AndroidVersions honor this annotation
13  * during validation.
14  */
15 @Documented
16 @Retention(RetentionPolicy.SOURCE)
17 @Target({ElementType.METHOD, ElementType.TYPE})
18 public @interface InDevelopment {}
19