Cross Reference: HelloAnnotation.java
xref
: /
openjdk7
/
langtools
/
test
/
tools
/
apt
/
Compile
/
HelloAnnotation.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
HelloAnnotation.java revision 0
0
N/A
/* /nodynamiccopyright/ */
0
N/A
import
java
.
lang
.
annotation
.*;
0
N/A
@
Target
(
ElementType
.
ANNOTATION_TYPE
)
0
N/A
@
Retention
(
RetentionPolicy
.
RUNTIME
)
0
N/A
@
HelloAnnotation
0
N/A
@
interface
HelloAnnotation
{
0
N/A
Target
value
()
default
@
Target
(
ElementType
.
METHOD
);
0
N/A
}