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