If the implementation method does not provide its own Javadoc, there will still be a link to the interface method documents. I never understood why Eclipse inserts /* (non-Javadoc) @see ... */
, since Javadocs automatically references interface documents.
Example:
public interface Named { public String getName(); } public class Thing implements Named {
After running javadoc
, Thing.getName
Javadocs:
getName public java.lang.String getName() Description copied from interface: Named Returns the name. Specified by: getName in interface Named
source share