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.

