如果不是所有公共内容都是 JavaDoc,如何强制编译警告?
我想在编译时收到每个没有 Javadoc 注释的公共事物(类、接口、字段、方法)的警告。
如何在 Eclipse 中启用此功能?
I want to get warnings at compile time for every public thing (class, interface, field, method) which doesn't have a Javadoc comment.
How can I enable this in Eclipse?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您的标签,我假设您指的是 Eclipse。为此,请打开窗口 ->首选项菜单项,然后在 Java 下 ->编译器-> Javadoc,将有一个下拉菜单,让您将丢失的 javadoc 标记视为错误、警告或忽略。
这个答案适用于最新版本的 eclipse,但是如果您在首选项搜索中搜索 javadoc,您应该能够轻松找到它。
Based on your tag, I'll assume that you mean in Eclipse. To do so, Open the Window -> Preferences Menu Item, and then Under Java -> Compiler -> Javadoc, there will be a dropdown that will either let you treat missing javadoc tags as Error, Warning, or Ignore.
This answer was for the latest version of eclipse, but if you search for javadoc in the preferences search you should be able to find it easily enough.