javadoc
Trying to use the -source path option, but it is not working with my package strucure. It will only identify one level, nothing below or above. I would think you could Identify one directory and it would search that directory and all sub-directories.
In my example I have the following package strucures.
(example 1)
com.ata.common.elements
com.ata.common.business
(example 2)
com.ata.common.cor.elements
com.ata.common.personnel.elements
I can't get the javadoc utility to pick up both package structures. Is my package structure not a good one?
The following command works for the first packages but not the second one.
....../jdk1.3.1_02/bin/javadoc -link http://java.sun.com/j2se/1.3/docs/api -d $DESTDIR -sourcepa
th . */*/*/*.java
The following command works for the second packages but not the first one.
....../jdk1.3.1_02/bin/javadoc -link http://java.sun.com/j2se/1.3/docs/api -d $DESTDIR -sourcepa
th . */*/*/*/*.java
The only difference is I added another */ in the sourcepath parameter. I want to do the whole directory/package structure from com on down........is it possible?
Thanks GMD

