評論

2011-06-06 160 views
6

我的問題是不是一個真正的編程問題..評論

我要評論我的JavaDoc的代碼,但我認爲這是一個有點奇怪重新評價現有的方法(我想@Override方法)。

例如,我重寫了方法onListItemClick,有沒有解決方案將用戶「重定向」到重寫方法的註釋?

回答

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; 
}