Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
2k views

Javadoc {@inheritDoc} tag class

I would like to use the {@inheritDoc} class to inherit methods from my abstract class. In the documentation for the abstract class, I refer to the abstract class by name. How can I tag this so when ...
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; ...
3
votes
2answers
289 views

Why won't Javadoc make my subclasses inherit documentation from Java's classes?

I've been searching for an answer for several months and I have tried multiple things, including unzipping the Compressed folder src.zip and using it as a parameter for Javadoc (for example: javadoc ...
1
vote
1answer
346 views

Javadoc through Ant task with {@inheritDoc} from J2SE classes

I generate documentation for a project using an Ant task. In several places, I wanted to inherit documentation from the standard classes, so I used {@inheritDoc} which allowed me to see the Javadoc in ...