Home | History | Annotate | Download | only in anno
      1 package android.test.anno;
      2 
      3 import java.lang.annotation.*;
      4 
      5 @Target(ElementType.FIELD)
      6 @Retention(RetentionPolicy.RUNTIME)
      7 
      8 public @interface AnnoSimpleField {}
      9