1 package android.test.anno; 2 3 import java.lang.annotation.*; 4 5 @Target(ElementType.FIELD) 6 @Retention(RetentionPolicy.RUNTIME) 7 @Inherited // should have no effect 8 @Documented 9 10 public @interface AnnoFancyField { nombre()11 public String nombre() default "no se"; 12 } 13