No package, class, or source file found named...

I use the JDK 1.3 and I need to generate the documentation of all the packages of my application. So, I made some batchs for generate the documentation of the wanted packages.

Content of the batch :

javadoc -d "D:\API" -author -version -private com.project.toolbox

The directory where are my classes is initialized in the Classpath.

But, I've got this error :

No package, class, or source file found named com.project.toolbox.

It's very urgent to generate this documentation. So, if you can help me. I'm waiting for your ideas.

[573 byte] By [dmonnierfra] at [2007-9-28 15:17:22]
# 1
You need the -sourcepath parameter to specify the search paths for finding source files.
peterg104a at 2007-7-12 12:04:07 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
I tried with this line :javadoc -sourcepath "D:\Project\toolbox" -d "D:\API" -author -version -private com.project.toolboxBut the result is the same.
dmonnierfra at 2007-7-12 12:04:07 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 3

Sorry I didn't get back to you earlier. The previous command

you wrote assumes the source files are at:

D:\Project\toolbox\com\project\toolbox\*.java

Is that where they are located?

Do the source files contain the package statement:

package com.project.toolbox;

-Doug Kramer

javadoc team

dkramera at 2007-7-12 12:04:07 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...