How to use JAVA DOC for more packeages

Hi All,How can i do java doc for packages like I have a root directoryTMS and subdirectories like A,B,C,D,E.....Up Z...How can i do it.
[170 byte] By [avina_SMPPa] at [2007-10-3 6:51:51]
# 1

If your package names are TMS.A, TMS.B, etc, then use this approach:

cd to the parent directory of TMS

javadoc -d docs -sourcepath . -subpackages TMS

If your source files are in the unnamed package, then that approach won't work. Do this instead:

cd into the TMS directory

javadoc -d docs A\*.java B\*.java C\*.java

Here are some examples:

http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javadoc.html#examples

dhkramera at 2007-7-15 1:42:54 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...