I have method overloads and you want to provide links in your Javadoc comments to others. But I have problems with generics and / or varargs. I was hoping I could write like this:
public <T> void method(T object, T... furtherObjects) {}
public <T> void method(T[] objects, T... furtherObjects) {}
public <T> void method(Collection<T> objects, T... furtherObjects) {}
But each link leads to the first method. Using Eclipse.
source
share