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 { from()10 int from(); to()11 String to(); 12 } 13