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.

[424 byte] By [Nikita04a] at [2007-9-28 11:50:00]
# 1
Yes, use in-line tag {@inheritDoc}./** * new comment * * {@inheritDoc} */public void method(){ super.method();}You can write above or below in-line tags.I show it with a paragraph separator.-Doug
dkramera at 2007-7-12 2:40:31 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...