Providing new doc comments w/o overriding a method
Is there a way to provide new documentation of a method inherited from a subclass with out overriding it? The superclass' implementation is
fine however the comments are not descriptive enough so I'd like to add more. But I dont' want to idiotically override it like so:
/**
* new comment
*/
public void method()
{
super.method();
}
thanks,
n.r.

