带有以下代码模板的日食->注释->类型:
/**
* @author ${user}
*
* ${tags}
*/
我上课时
public class MyProtocol<T extends ProtocolContext> extends Protocol<ExtendProtocolContext> {
当我向课程添加评论
/**
* @author user
*
* @param <T>
*/
的班中找不到@param
@param(仅适用于方法和构造函数)
打开方法为
* @param text the text of the tool tip */ public void setToolTipText(String text) {
类上也应该存在@param
吗?如果不是,那是Eclipse问题吗?
答案 0 :(得分:1)
据此:
https://docs.oracle.com/javase/1.5.0/docs/tooldocs/windows/javadoc.html#@param
它也应该用于课程:
/**
* @param <E> Type of element stored in a list
*/
public interface List<E> extends Collection<E> {
}
与最新文档中的内容相同:
https://docs.oracle.com/en/java/javase/11/docs/specs/doc-comment-spec.html