Advice to Javadoc[tm] Team
Imho most of developers insterested in Javadoc and new to one, most of all need an answer of the question how to get doucumentation of all packages and subpackages of the specifiied dir.
My answer variant:
Suppose that packages are in C:\src. And you want to generate documentation and place it into C:\doc.
1. step: Create dir C:\doc
2. step: execute recursivedoc.bat C:\src C:\doc
recursivedoc.bat:
if {%2}=={} goto paramabsend
cd %1
javadoc -d %2 -sourcepath %1 -subpackages *
goto end
:paramabsend
echo absend one or more params (param1 - source dir, param2 - documentation dir)
:end

