using javadoc in linux

Hi,

I'm wanting to use java doc, i've checked out the download page and it doesn't seem to say anything about linux.

can javadcoc be used in linux? how do i go about installing it?

i've created all my comments and just need to run it now to produce the documentation.

Cheers

[310 byte] By [elodiea] at [2007-10-2 16:51:11]
# 1

Hi,

If you are able to run Java under Linux, what's the problem in running Javadoc?

Just download and install the full JDK for Linux. Javadoc is there!

To run Javadoc you may use a shell command file with the content like that:

#!/bin/sh

JDK=/usr/java/jdk1.5

OPTIONS="my javadoc options... "

${JDK}/bin/javadoc ${OPTIONS}

Best,

Leonid Rudy

http://www.docflex.com

leonid_rudya at 2007-7-13 18:02:59 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...