FileDocCategorySizeDatePackage
ExportedProperty.javaAPI DocAndroid 1.5 API340Wed May 06 22:41:06 BST 2009android.test.anno

ExportedProperty.java

/* part of test for array problem */
package android.test.anno;

import java.lang.annotation.*;

@Target({ ElementType.FIELD, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)

public @interface ExportedProperty {
    boolean resolveId() default false;
    IntToString[] mapping() default { @IntToString(from = -1, to = "-1") };
}