Javadoc @see 包信息中的标签
我们正在开发一个类项目并使用 Javadocs 来记录我们的包。 package-info.java 文件用于顶级包文档,但我们似乎无法使用任何 @see 标签来引用其他类。 Javadoc 将不断地给出所有这些的“未找到引用”错误。为了使引用发挥作用,必须做些什么?我们已经尝试导入引用的类,但没有成功。
We're working on a class project and using Javadocs to document our packages. package-info.java files are being used for the top-level package documentation, but we can't seem to use any @see tags to refer to other classes. Javadoc will constantly give 'reference not found' errors for all of them. Is there anything that must be done in order for the references to work? We already tried importing the referenced classes but that didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用完整的类名,包括包说明符。
请参阅 Javadoc 规范
You have to use the full class name, including the package specifier.
See Javadoc spec