来自命令行的 Eclipse Javadoc 编译器警告
我最近从 Eclipse 迁移到另一个 IDE。我真正缺少的一件事是可配置 各种 Javadoc 问题的编译器警告。
由于我的 IDE 可以使用 Eclipse 编译器 - 而且我知道可以配置各种 来自命令行的一般编译器警告 - 我想知道是否也可以像这样配置 Javadoc 警告。
我特别寻找一种配置以下设置的方法:
缺少 Javadoc 标记
对于具有一定可见性的方法缺少 Javadoc 注释
对于具有一定可见性的方法
I recently moved from Eclipse to another IDE. One thing I'm really missing is configurable compiler warnings for various Javadoc problems.
As my IDE can use the Eclipse compiler - and I know that it is possible to configure all kinds of general compiler warnings from the command line - I was wondering if it is possible to configure the Javadoc warnings like this as well.
I'm especially looking for a way to configure the following settings:
Missing Javadoc tags
for methods of a certain visibilityMissing Javadoc comments
for methods of a certain visibility
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过外部工具(如 Eclipse 可能所做的)来完成此操作,也可以使用文档检查 doclet 来完成此操作。标准 doclet(或 javadoc 核心)在这里没有选项。
You could do this either through an external tool (like Eclipse likely does), or use a doc-checking doclet for this. The standard doclet (or the javadoc core) has no options here.