1 package android.test.anno; 2 3 import java.lang.annotation.*; 4 5 @Target(ElementType.TYPE) 6 @Retention(RetentionPolicy.RUNTIME) 7 @Inherited 8 @Documented 9 public @interface AnnoSimpleType {} 10
1 package android.test.anno; 2 3 import java.lang.annotation.*; 4 5 @Target(ElementType.TYPE) 6 @Retention(RetentionPolicy.RUNTIME) 7 @Inherited 8 @Documented 9 public @interface AnnoSimpleType {} 10