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

     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 }

mercurial