3
votes
2answers
322 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}
*
…
0
votes
1answer
157 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;
…
