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.TYPE })
      7 @Retention(RetentionPolicy.RUNTIME)
      8 
      9 public @interface IntToString {
     10     int from();
     11     String to();
     12 }
     13