1 2 3 4 5 6 7 8 9 10 11 12 13
import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import java.lang.annotation.Retention; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Target; @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface MyAnnotation { String dummy1() default ""; String dummy2() default ""; }