作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
在我的项目中,我们使用了一些注释,这些注释在 javadoc API 文档中非常有用。
有人知道在生成的 javadocs 中包含注释的简单方法吗?我不想编写自己的 javadoc 插件。有什么解决办法吗?
最佳答案
见 java.lang.annotation.Documented
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.
例子:
import java.lang.annotation.Documented;
@Documented
public @interface MyAnnotation {
}
关于java - 有没有办法让 javadoc 工具记录注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1168080/
我是一名优秀的程序员,十分优秀!