Home | History | Annotate | Download | only in anno
      1 /* part of test for array problem */
      2 package android.test.anno;
      3 
      4 import java.lang.annotation.*;
      5 
      6 @Target({ ElementType.FIELD, ElementType.METHOD })
      7 @Retention(RetentionPolicy.RUNTIME)
      8 
      9 public @interface ExportedProperty {
     10     boolean resolveId() default false;
     11     IntToString[] mapping() default { @IntToString(from = -1, to = "-1") };
     12 }
     13