FileDocCategorySizeDatePackage
AnnoFancyField.javaAPI DocAndroid 1.5 API259Wed May 06 22:41:06 BST 2009android.test.anno

AnnoFancyField.java

package android.test.anno;

import java.lang.annotation.*;

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Inherited      // should have no effect
@Documented

public @interface AnnoFancyField {
    public String nombre() default "no se";
}