problem referencing to methods with generic type parameters
Assuming I have an interface like to following:
public interface Test <T> {
void test ( T arg0 );
void test ( T arg0, Object arg1 );
}
I would like to reference to both "test"-methods using "{@link #test(T)}" and "{@link #test(T,Object)}".But this generates an error telling me "test(T)" and "test(T,Object)" cannot be found.
Changing T to Object in the documentation works and has as interesing effect. The generated link text is "test(Object)" but the generated link is "test(T)".
Am I somehow wrong? Or is this a known issue? And is there a workaround other than using "Object" instead of "T"?

