langtools/test/tools/apt/Compile/HelloAnnotation.java
author trims
Fri, 02 Jul 2010 01:37:36 -0700
changeset 5910 ca3d85421cbb
parent 10 06bc494ca11e
permissions -rw-r--r--
6966252: Bump the HS19 build number to 04 Summary: Update the HS19 build number to 04 Reviewed-by: jcoomes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/* /nodynamiccopyright/ */
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
import java.lang.annotation.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
@Target(ElementType.ANNOTATION_TYPE)
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
@Retention(RetentionPolicy.RUNTIME)
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
@HelloAnnotation
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
@interface HelloAnnotation {
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
    Target value() default @Target(ElementType.METHOD);
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
}