9 lines
235 B
Java
9 lines
235 B
Java
|
/* /nodynamiccopyright/ */
|
||
|
import java.lang.annotation.*;
|
||
|
@Target(ElementType.ANNOTATION_TYPE)
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
@HelloAnnotation
|
||
|
@interface HelloAnnotation {
|
||
|
Target value() default @Target(ElementType.METHOD);
|
||
|
}
|