To get a link to something external to your code, you need to use the -linkoffline option
where the -linkoffline option has a format similar to this (artificially wrapped):
-linkoffline http://java.sun.com/javase/6/docs/api/ http://java.sun.com/javase/6/docs/api/
This tells the JavaDoc tool where to find the JavaDoc link and which packages to use this link. From the second URL, it will add a โpackage listโ to load the actual URL:
http://java.sun.com/javase/6/docs/api/package-list
which you can verify by downloading it in a browser, contains a list of packages registered at this JavaDoc URL. This tells the JavaDoc utility that any @link links to anything in one of these packages should link to the provided URL.
Eddie Mar 31 '09 at 3:53 2009-03-31 03:53
source share