jdk-24/langtools/test/tools/apt/Compile/HelloAnnotation.java

9 lines
235 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/* /nodynamiccopyright/ */
import java.lang.annotation.*;
@Target(ElementType.ANNOTATION_TYPE)
@Retention(RetentionPolicy.RUNTIME)
@HelloAnnotation
@interface HelloAnnotation {
Target value() default @Target(ElementType.METHOD);
}