Parameter and Return obejcts as links?

when I generate my javadocs im having a problem in that the return and parameter Objects are not links. It will list the name of the class but its plain text only.This is an example what im talking about

http://java.sun.com/j2se/1.4.2/docs/api/java/util/Observer.html

The 2 parameters for the update function are links to the docs for those classes. When I generate I don't have the links, just plain text saying that class name. This is for all classes, including standard classes (Strings, Integer, etc..) as well as custom classes that are created in my project. The only command line argument im using is "-noqualifier all" to omit the full package path.

does anyone have any ideas on why its doing this?

[736 byte] By [raydawg2000a] at [2007-11-26 23:47:32]
# 1

Your parameter types should automatically get links to any HTML pages that your run of javadoc generates. You're saying this isn't happening?

In order to have links to String, Integer, or other classes that you have not passed into the javadoc command, you must use -link or -linkoffline:

http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javadoc.html#link

-Doug

dhkramera at 2007-7-11 15:22:14 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
lol yea im an idiot. I forgot to generate the javadocs for my custom objects. I was testing out some javadoc options and was only creating a few packages to test with.Your first sentence turn on the light bulb in my head thanks!!-Ray
raydawg2000a at 2007-7-11 15:22:14 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...