Eclipse - 如何仅将 javadoc 警告设置为特定文件夹,而不是整个项目

发布于 2024-12-18 04:02:45 字数 240 浏览 0 评论 0原文

我的一些同事缺乏纪律,并不总是编写他们的课程文档(不总是=从不)。我试图通过为缺少注释 javadoc 设置项目警告来强制他们编写文档。我们有两个源文件夹“src”和“tests” - 显然并非所有 @Test 方法都需要文档,并且此警告是多余的。但现在所有未记录的测试都收到了这些烦人的警告,该项目收到了数百个警告,我担心会错过一些真正危险的警告(因为有数百个无用的警告)。

如何仅在“src”文件夹上设置警告,并忽略“tests”文件夹上的警告?

Some of my colleagues lack discipline and not always write documentation of their classes(not always = never). I was trying to force them to write documentation by setting project warnings for missing comment javadocs. We got two source folders 'src' and 'tests' - obviously not all @Test methods needs documentation and this warning there is redundant. But now all undocumented tests got these annoying warnings, the project got hundreds of warnings and I'm afraid that some real dangerous warnings will be missed(because there are hundreds of useless ones).

How to set warnings only on the 'src' folder, and ignore the warnings on 'tests' folder?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没有你 2024-12-25 04:02:45

恐怕没有设置可以严格禁用测试类/方法缺少的 javadoc 验证。甚至在 Eclipse bugzilla 此处 上发布了一条建议,但最终还是出现了死胡同。

解决此问题的唯一但不优雅的方法是使用 @SuppressWarnings("javadoc") 注释来注释这些测试方法。

I'm afraid there is no setting to disable missing javadoc validation strictly for Test classes/methods. There even was a suggestion posted on Eclipse bugzilla here but eventually it came to an dead end.

The only, nonelegant way of solving this issue is by annotating those test methods with @SuppressWarnings("javadoc") annotation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文