How can I document packages recoursively?

Hello,I have folder com\name_of_company\...In this folder are all packages that I want to document with JavaDoc.Is there any way to do this recoursively. I mean something like:javadoc -<some_option> comThank you in advance.
[278 byte] By [vladshtr] at [2007-9-26 4:09:13]
# 1

Three ways:

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

This has a java program that collects package names, which

you then pass into javadoc.

2) Another posting in Javadoc forum states this can be done with Ant.

I have not tried this.

3) Wait for Javadoc 1.3 Beta 2, available this fall.

It has the feature -subpackages that does exactly what you want.

-Doug Kramer

Javadoc team

dkramer at 2007-6-29 13:12:04 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
try ant
nort_de at 2007-6-29 13:12:04 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...