Non fully qualified class names in parameter list
Hi Folks,
When I generate my documentation the fully qualified class names (for each parameter) appear in the parameter list for methods. In looking at the documentation on this site, a hyperlink to the class using the only the class name appears. Can anyone provide thoughts on how this is achieved? Thanks.
[328 byte] By [
duaneblock] at [2007-9-26 14:59:15]

The -link and -linkoffline options enable the documents to link to other API documentation
generated in separate runs of javadoc. Linkoffline is usually the one you want.
http://java.sun.com/j2se/1.4/docs/tooldocs/win32/javadoc.html#linkoffline
With 1.4.0, you can also choose to omit the package name even if -link or -linkoffline
is not used by using -noqualifier.
-Doug Kramer
Javadoc team