g**********y 发帖数: 14569 | 1 1. It doesn't matter where you create the program and where you run javadoc,
result should be the same. BTW, if you create program under JBuilder, you may
miss some .jar/.zip files to run/compile/javadoc it on UNIX.
There is no difference between folling if there is only MyProgram.java in
that directory --
javadoc MyProgram.java
javadoc *.java
some interesting option --
-d: specify document path (where you want to store generated html)
-private: will include private metho |
|