1 package androidx.annotation; 2 3 import static java.lang.annotation.ElementType.FIELD; 4 import static java.lang.annotation.ElementType.METHOD; 5 import static java.lang.annotation.ElementType.PARAMETER; 6 import static java.lang.annotation.RetentionPolicy.CLASS; 7 8 import java.lang.annotation.Retention; 9 import java.lang.annotation.Target; 10 11 /** stub for testing */ 12 @Retention(CLASS) 13 @Target({METHOD, PARAMETER, FIELD}) 14 public @interface RecentlyNullable {} 15