Hi,
using jdk1.2pre2, javadoc is unable to find certain Classes in java.lang.
For example the code
* @see java.lang.System
* @see java.lang.Object
produces a warning for java.lang.System but _not_ for java.lang.Object, although
java.lang.system.html is in the same place as java.lang.object.html
I believe there should be a private constructor in the
Transvirtual java.lang.System class:
private System() {
}
Otherwise you can instantiate it :-)
The JDK classes contain such a constructor.
Note that there's a regression test which will need changing too.
's VM and Linux's.
I got around the problem by editing and compiling my own
java.lang.System, making in, out, and err non-final fields, and
changing their initialization & set methods.
I've attatched the sample code that breaks the java-linux System class if
you want to look at it