blob: 855ba56146fc7295af847eec94911a87cc825d8b [file] [log] [blame]
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";
}