recursive documentation from sources with Javadoc 1.3

"javadoc -d D:\docs -sourcepath D:\srcs *" make documentation only for top level packagesI know, that I can execute "javadoc -d D:\docs -sourcepath D:\srcs toplevelpackage toplevelpackage.innerpackage" is there better way?
[250 byte] By [m77] at [2007-9-26 12:17:17]
# 1

If you are using 1.3 and want to automatically document the top level package and all its subpackages, a good way is to copy, compile, and run the program JavadocRecurse.java

from the Javadoc FAQ page at:

http://java.sun.com/j2se/javadoc/faq.html#recursesource

1.3 does not have this feature built-in, though 1.4 does with the -subpackages option.

-Doug

dkramer at 2007-7-2 2:52:11 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...