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