Name: dk30142 Date: 02/14/2002
All messages that display package, class, interface or member
names should have quotes around the name, in case the name is
a space or is empty. This enables the person reading the message
to tell what name javadoc is looking for.
For example, this message says:
javadoc: No source files for package
Instead, it should have quotes around the package name
javadoc: No source files for package " "
I can reproduce this message when the following script is
saved to a file and executed at /home/dkramer/javadoc/mifdoclet/1.2b2
as the current directory. Notice there is a space
after the continuation character '\' following sample-src, which
is the error.
#!/bin/csh -x
#/java/re/jdk/1.2.2/archive/cricket/binaries/solaris/bin/javadoc
/java/re/jdk/1.4.0/nightly/binaries/solsparc/latest/bin/javadoc -doclet com.sun.tools.doclets.mif.MIFDoclet -docletpath
/java/jdk/ws/tools/doclets/mif/dkramer/build/solaris/jar/mifdoclet.jar -J-Xmx20M -d docs -sourcepath ./test/sample-src \
com.package1 com.package2
======================================================================