Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 2.6
-
Fix Version/s: 2.8.1
-
Labels:None
-
Number of attachments :
Description
When the javadoc:fix goal is executed, it rightly adds fully qualified class names for each
{@link} tag. It would be great if the mojo would fix existing {@link}tags to be fully qualified, also. Thanks!
I already thought about this feature but it seems difficult to find the right class in the classloader.
/** * @throws ConnectException * @see {@link ConnectException} */ public void dummy() throws ConnectException {} public static class ConnectException extends Exception{}Which ConnectException? net, rmi or inner?