Re: @see me remove java.lang refs from the javadocs

2001-08-21 Thread Christopher Cain
Quoting Dmitri Colebatch <[EMAIL PROTECTED]>: > You can link to other packages like this: > > [dim@host63 javadoc]$ javadoc -d docs/ \ > > -linkoffline http://java.sun.com/j2se/1.3/docs/api/ \ > > . src/Test.java > > and in the current directory have a file called package-list that > contains

Re: @see me remove java.lang refs from the javadocs

2001-08-21 Thread Dmitri Colebatch
You can link to other packages like this: [dim@host63 javadoc]$ javadoc -d docs/ \ > -linkoffline http://java.sun.com/j2se/1.3/docs/api/ \ > . src/Test.java and in the current directory have a file called package-list that contains all the packages you want to link to that url. probably a good

@see me remove java.lang refs from the javadocs

2001-08-21 Thread Christopher Cain
Anyone care if I remove all of the @see javadoc directives that reference a java.lang.* class? I'm kinda bored with the build messages they throw =) Unless, of course, there is some condition where they build cleanly, but I assume that would be having the java.lang docs in the same tree, yes? -