为 Eclipse 中的现有代码生成 JavaDoc 注释

发布于 2024-08-31 10:40:20 字数 81 浏览 6 评论 0原文

我知道在创建类、接口等时可以在向导屏幕中生成它们的注释,但我还没有找到为现有文件生成 javadoc 注释的选项。是否可以?

谢谢。

I know it's possible to generate comments for classes, interface, etc., in the wizard screen when creating them, but I haven't found an option to generate javadoc comments for an existing file. Is it possible?

Thanks.

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

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

发布评论

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

评论(3

妄断弥空 2024-09-07 10:40:20

命令是“添加 Javadoc 注释”或“生成元素注释”(Alt+Shift+J),并且它取决于当前选择的one元素。

它不能应用于所有文件。因此,如果您通过项目资源管理器视图选择所有类,您将无法从那里生成所有缺少的注释。

但从 Project Explorer 来看,正如 Vitalii Fedorenko 在评论中提到的那样,它有效(刚刚测试过):

您应该在 Package Explorer 中展开一个类,选择所有元素并按 Alt+Shift+J

http://img683.i_mageshack.us/img683/2263/eclipsegenjavadoc.png

The command is "Add Javadoc Comment", or "Generate Element Comment" (Alt+Shift+J), and it is dependent on the one element currently selected.

It cannot be applied to a all file. So if you select the all class through the project explorer view, you won't be able to generate all the missing comments from there.

But from the Project Explorer, as Vitalii Fedorenko mentions in the comments, it works (just tested it):

you should expand a class in the Package Explorer, select all elements and press Alt+Shift+J

http://img683.i_mageshack.us/img683/2263/eclipsegenjavadoc.png

夏花。依旧 2024-09-07 10:40:20

如果您喜欢双手放在键盘上,那么在方法之前的行中键入 /** 并按 Enter 也可以:

/**[press enter here]
int avg(int a, int b) throws ArithmeticException {
    ...
}

-->

/**
 * 
 * @param a
 * @param b
 * @return
 * @throws ArithmeticException
 */
int avg(int a, int b) throws ArithmeticException {
    ...
}

If you like to keep both hands on keyboard, then typing /** on the line before a method and pressing enter works too:

/**[press enter here]
int avg(int a, int b) throws ArithmeticException {
    ...
}

-->

/**
 * 
 * @param a
 * @param b
 * @return
 * @throws ArithmeticException
 */
int avg(int a, int b) throws ArithmeticException {
    ...
}
天涯离梦残月幽梦 2024-09-07 10:40:20

这个 https://stackoverflow.com/a/8223484/830945 为这个问题提供了一个很好的解决方案。

我自己已经测试过,它与 eclipse 配合得很好。
您只需右键单击项目,然后选择所需的选项。可以从 http://jautodoc.sourceforge.net/index.html 下载

This https://stackoverflow.com/a/8223484/830945 provides a very solution for this problem.

I myself have tested it and it works very well with eclipse.
You just need to right click project, then choose required option. can be downloaded from http://jautodoc.sourceforge.net/index.html

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