我的问题不是编程问题..
我必须为JavaDoc注释我的代码,但我认为重新评论现有方法有点奇怪(我考虑@Override
方法)。
例如,我重写方法onListItemClick
,是否有解决方案将用户“重定向”到重写方法的注释?
答案 0 :(得分:13)
使用:/** {@inheritDoc} */
或{@link package.class#member label}
http://download.oracle.com/javase/1.4.2/docs/tooldocs/windows/javadoc.html#{@inheritDoc}
答案 1 :(得分:8)
尝试{@inheritDoc}
属性。这应该做你需要的。
您还可以在此标记之后或之前添加一些其他帮助评论。这是android源代码的一个例子:
/**
* {@inheritDoc}
*
* Note that if you're calling on a local binder, this always returns true
* because your process is alive if you're calling it.
*/
public boolean isBinderAlive() {
return true;
}