I have defined a Javadoc comment as follow:
/**
* bla bla bla {@link #PathAction} bla bla bla...
*
* @author andreas
*
* @param <T>
*/
when moving the mouse on the object CustomPath in the java code I can see the following:
When clicking on the PathAction Link in the description , nothing happens. I expected that I was redirected to the PathAction Object.
Is this behaviour default or I am doing something wrong. Is there a way that I can be redirected to the PathAction Object, or how can I access the javadoc of PathAction. My goal is to read through the code with Javadoc comments.
any suggestions ?