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

[680 byte] By [m77] at [2007-9-26 12:22:01]
# 1
Looks like this saves you from having to remember the -d, -sourcepath and -subpackagesoptions.-Doug KramerJavadoc team
dkramer at 2007-7-2 3:00:42 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...