Re: Compilation error with ant...

2002-02-14 Thread Christopher K. St. John
Jean-Luc BEAUDET wrote: When i compil tomcat 4.0.2 with ant, i've got 2 set of warnings: [javadoc] javadoc: warning - Tag @see: Class or Package not found: http://java.sun.com/j2se/javadoc/faq.html#namenotreferenced -- Christopher St. John [EMAIL PROTECTED] DistribuTopia

RE: Compilation error with ant...

2002-02-14 Thread Martin van den Bemt
javadoc is rather verbose while generating (in this case it doesn't know where the javadoc of the jdk can be found..) Mvgr, Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jean-Luc BEAUDET Sent: Thursday, February 14, 2002 14:23 To: Tomcat

Re: Compilation error with ant...

2002-02-14 Thread Jean-Luc BEAUDET
Martin van den Bemt a écrit : javadoc is rather verbose while generating (in this case it doesn't know where the javadoc of the jdk can be found..) Mvgr, Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jean-Luc BEAUDET Sent:

Re: Compilation error with ant...

2002-02-14 Thread Jean-Luc BEAUDET
Christopher K. St. John a écrit : Jean-Luc BEAUDET wrote: When i compil tomcat 4.0.2 with ant, i've got 2 set of warnings: [javadoc] javadoc: warning - Tag @see: Class or Package not found: http://java.sun.com/j2se/javadoc/faq.html#namenotreferenced -- Christopher St. John [EMAIL

Re: Compilation error with ant...

2002-02-14 Thread Larry Meadors
Javadoc is complaining because it cannot find the source referenced by the @see tag (in this case the java.lang.Runtime class). It will still create the javadocs, it just will not create the links to the classes that it cannot find. I dealt with this by unzipping the src.jar that comes with the

Re: Compilation error with ant...

2002-02-14 Thread Craig R. McClanahan
The [javadoc} at the beginning of each line tells you that this output is coming from the javadoc task in the Ant build.xml script, which (surprise surprise :-) runs JavaDoc. JavaDoc will complain like this when your code has a reference to classes external to the package, when it doesn't know