有没有办法在其子代实现中显示抽象函数的书面注释?
如果我将鼠标悬停在@Override函数上,则在Eclipse中无法看到继承文档,但是在Android Studio上,我无法弄清楚如何在其子类中查看我的注释。
抽象类示例:
public abstract Class SomeForm{
protected TextView textView;
.
.
.
/**
*{@inheritDoc set text for textView}
*/
public abstract void setTextViewText();
}
子类示例
public Class MyForm extends SomeForm{
protected TextView textView;
.
.
.
@Override
public void setTextViewText(){
}
}
如果我将鼠标悬停在Eclipse的@Override方法上,我会在一个小窗口中看到“注释”,这当然有很多帮助。在Android Studio上没有任何反应。
@inheritDoc也可能是错误的用法,但在eclipse中以这种方式对我有用。
我很喜欢任何提示。 :)
编辑: