java - Is there a way to get the javadoc tool to document annotations? -
In my project, we use many annotations which will be very useful for viewing in the Javadoc API documentation.
Does anyone know a simple way to include annotations in Jawadox? I do not want to write my own javascript plugin Is there any solution out there?
see
indicates that annotation with one type Originally to be documented by javadoc and similar tools. This type of use should be used to annotate those types of announcements, whose comments affect the use of elements annotated by their clients. If a type of declaration is annotated with the document, its comments become part of the public API of the annotated elements.
Example:
import java.lang annotation.Documented; @Documentary Public @Intertion {}
Comments
Post a Comment