test/tools/apt/Compile/HelloAnnotation.java

Fri, 17 Oct 2008 10:34:06 -0700

author
jjg
date
Fri, 17 Oct 2008 10:34:06 -0700
changeset 148
eca4bf37b66e
parent 1
9a66ca7c79fa
permissions
-rw-r--r--

6760805: empty element on bootclasspath breaks test/tools/apt/Compile/compile.sh
Reviewed-by: darcy

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

mercurial