Suppose I have two classes:
abstract class GenericA<E> { public void go(E e) {...} } public class IntegerA extends GenericA<Integer> { }
Note that GenericA is private and public, and IntegerA is public, not shared.
Now, when I create a public Javadoc (using Eclipse), I see the following in the IntegerA methods IntegerA :
public void go(E e)
The problem is that the reader of this Javadok does not know what E ; that is, E represents Integer . I would prefer Javadok to say
public void go(Integer e)
Is there a way to make Javadoc behave the way I want?
source share