@Documented @Retention(value=RUNTIME) @Target(value=ANNOTATION_TYPE) public @interface Documented
@Documented
is present on the declaration
of an annotation type A, then any @A
annotation on
an element is considered part of the element's public contract.
In more detail, when an annotation type A is annotated with
Documented
, the presence and value of annotations of type
A are a part of the public contract of the elements A
annotates.
Conversely, if an annotation type B is not
annotated with Documented
, the presence and value of
B annotations are not part of the public contract
of the elements B annotates.
Concretely, if an annotation type is annotated with Documented
, by default a tool like javadoc will display
annotations of that type in its output while annotations of
annotation types without Documented
will not be displayed. Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2016, Oracle and/or its affiliates. All rights reserved.
DRAFT 9-internal+0-2016-01-26-133437.ivan.openjdk9onspinwait