ExportedProperty.java :  » android-core » platform-dalvik » android » test » anno » Android Open Source

Android Open Source » android core » platform dalvik 
platform dalvik » android » 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") };
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.