How do I use the @see
javadoc properly?
My intention is to have an abstract class with abstract methods. These methods have javadoc comments.
Now if I extend the abstract class, I override the methods and want to use @see
.
But for all params, eg for return
the @see
link does not seem to work. Eclipse still complains that expected @return tag
.
So how can I use this?
public abstract class MyBase {
protected abstract void myFunc();
}
class MyImpl extends MyBase {
/**
* @see MyBase#myFunc()
*/
@Override
protected void myFunc() { .. }
}