1 2 3 4 5 6 7 8
import java.lang.annotation.*; public class MyClass { @Retention({RetentionPolicy.RUNTIME}) private @interface MyAnnotation { } }