mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
8 lines
235 B
Java
8 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);
|
|
}
|