1
/* /nodynamiccopyright/ */
2
import java.lang.annotation.*;
3
@Target(ElementType.ANNOTATION_TYPE)
4
@Retention(RetentionPolicy.RUNTIME)
5
@HelloAnnotation
6
@interface HelloAnnotation {
7
Target value() default @Target(ElementType.METHOD);
8
}