Tagged Questions

5
votes
2answers
2k views

Java Documentation Override Method does not InheritDoc

A method that overrides another method does not inherit documentation of the method it is overriding. Is there any way to explicitly tell it to inherit the documentation? /** * {@inheritDoc} * ...
4
votes
1answer
2k views

{@inheritDoc} not inheriting superclass javadoc in Eclipse

When I use {@inheritDoc} in Eclipse, the superclass's javadoc comments are not appearing in my class's javadoc. I have the following piece of code: import javax.swing.table.AbstractTableModel; ...