@see/{@link} Question
When you specify an @see or {@link} tag to look at, let's say java.util.Properties, do I have to specify the url to that Javadoc page using an HTML anchor element? In the articleHow to Write Doc Comments for the Javadoc Tool they just specified the class name and it came back as a link in the generated document. Granted they are probably using a class within their package but I figured I could just specify the full package name for a standard Java class and it would automatically convert it into a link (assuming the package has some sort of way to reference that Javadoc). I'm wondering if I'm doing something wrong or if I'm just going to have to suck it up and have to deal with littering my comments with HTML anchor elements.
I'm using Eclipse 3.2.1 with an Ant build file. My Ant version is 1.7.0.

