repository.grepcode.com$java$root@jdk$openjdk@6-b14
repository.grepcode.com$java$root@jdk$openjdk@6-b14@java$lang$annotation$Documented.java
file
oh
o
[]
Is there a project that maintains annotations for patterns?
For example, when I write a builder, I want to mark it with @Builder.
Annotating in this way immediately provides a clear idea of what the code implements. Also, the Javadoc of the @Builder annotation can reference explanations of the builder pattern. Furthermore, navigating from the Javadoc of a builder implementation to @Builder Ja...
whats the purpose of @Documented annotation in java?
I saw the documentation. But could not get much from it. Can someone point out with the help of an clear example
In my project, we use a number of annotations that would be very useful to see in the javadoc API documentation.
Does anyone know a simple way to include annotations in generated javadocs? I don't want to write my own javadoc plugin. Are there any solutions out there?
package java.lang.annotation;
Indicates that annotations with a type are to be documented by javadoc
and similar tools by default. This type should be used to annotate the
declarations of types whose annotations affect the use of annotated
elements by their clients. If a type declaration is annotated with
Documented, its annotations become part of the public API
of the annotated elements.
- Author(s):
- Joshua Bloch
- Since:
- 1.5