no argument hyperlinks on individual files

When I javadoc a combination of packages and selected classes in other

packages, as in

javadoc ... com.whoever.package1

com.whoever.package2.SomeClass.java

com.whoever.package2.AnotherClass.java

method arguments in package1 that are of classes also in package1

are rendered as hyperlinks, but arguments in package2.SomeClass.java

that are of type com.whoever.package2.AnotherClass aren't rendered

as hyperlinks. Is there a way to have these rendered as hyperlinks?

[523 byte] By [gcordreya] at [2007-9-28 19:54:47]
# 1
Correction - the javadoc command is actually of the form (the *.javafiles are referenced by directory path, not package name)javadoc ... com.whoever.package1 c:/mysrc/com/whoever/package2/SomeClass.java c:/mysrc/com/whoever/package2/AnotherClass.java
gcordreya at 2007-7-12 18:43:01 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2

gcordey wrote the javadoc team directly. My reply was:

The link to AnotherClass should appear automatically, because it

is being passed in on the command line -- there is no option to turn it

on or off, so this sounds like a bug. If you aren't using 1.4.2 Beta,

please try that first, as it might be fixed there. If it still doesn't

work, please submit this bug.

-Doug Kramer

javadoc team

To which his reply was:

Thanks, it's fixd in the 1.4.2 beta.

dkramera at 2007-7-12 18:43:01 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...