javadoc packages

I'm having trouble using javadoc with my packages. At the command line, in the directory of the files in my package, I run the command 'javadoc searcher' where searcher is the name of my package. I get the error "No package, class, or source file found named searcher". Now, I'm not too familiar with packages either, but I do have the first line being 'package searcher;' in each of the source files in the directory. What am I doing wrong? Is there something else that I have to do to make a package? Thanks for any help you can give me.

[559 byte] By [bheimsoth] at [2007-9-26 2:54:43]
# 1

I'm not sure what you mean by "in the directory of the files in my

package." If you omit -sourcpath, the current directory must be

the directory that contains the package directory. Given that your

"searcher" directory is at c:\src\searcher, then you must first

cd to c:\src.

If you use "-sourcepath c:\src", then the current directory can be

anywhere.

-Doug Kramer

Javadoc team

dkramer at 2007-6-29 10:44:26 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...