使用 eclispe 和 java 使文档显示在 Intellitext 窗口中
当使用标准 API(例如集合库)时,预测文本选项窗口还会显示有关类/方法的注释。
但是,当我对自己的代码(我正在处理的开放项目)执行相同样式的注释时(代码完成工作正常,只是没有出现注释),然后稍后引用它。这些评论不会显示。我得到了正确的代码完成选项,但没有相关的注释/文档。它们不在 jar 中,它们是源文件,使用 maven 构建成 war 文件。
是否有我需要在 Eclipse 中启用的设置,或者我需要设置 javadoc 或其他什么?
When using the standard api, for example the collections library, the predictive text options windows also shows the comments on class/methods.
however when I do the same style comments on my own code - the open project I am working on (code completion works correctly, just no comments appear), and then reference it later. These comments are not displayed. I get the correct code completion options, just none of the associated comments/documentation. They are not in jar, they are source files, that are built using maven into a war file.
Is there a setting I need to enable in eclipse, or do I need to set up javadoc or something ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
多么尴尬,您必须在注释开头指定双星号才能创建 javdoc 注释
How embarassing, you to have to specify double asterix at the begininng of comment to create a javdoc comment
如果该类是 jar 的一部分,您需要关联 javadoc jar 或路径。您可以右键单击 eclipse 中的 jar,然后在属性对话框中指定路径。
If the class is part of a jar you need to associate the javadoc jar or path. You can right click on the jar in eclipse and specify the path in the properties dialog.