How do you refer to a method in javadoc @see and @link if they have parameters like Bonded?
Example:
public class A { } public interface I<J> { } public class F { public static <T extends A & I<B>, B> String newThing(T bondedTypeObject, List<B> list) { } public static <T extends A & I<B>, B> String newThing(T bondedTypeObject, B anotherObject) { } public static String createSuperNewThing(...) { return newThing(...); } }
How do you write javadoc link for createSuperNewThing to the correct newThing method?
Oracle documentation is not very clear in such cases: http://docs.oracle.com/javase/6/docs/technotes/tools/windows/javadoc.html#specifyingname
source share