DocCheck Output says "Anonymous" instead of Actual Package Name
I'm on windows XP and I've run DocCheck on a package, however everywhere in the output I would expect to see the package name, DocCheck inserts "anonymous." Examples:
API Specification Errors
Errors in Class: (anonymous).Person
and
API Specification Errors
Errors in Package: (anonymous)
My source code definitely includes package definitions, so I don't know what's wrong.
In case I did something wrong in my DocCheck invocation, following is the entire command line:
if exist docCheckOutput rmdir /s /q docCheckOutput
mkdir docCheckOutput
javadoc ^
-doclet com.sun.tools.doclets.doccheck.DocCheck ^
-docletpath C:\DocCheck\doccheck1.2b2\doccheck.jar ^
-J-Xmx20M^
-d docCheckOutput^
-classlist^
-docletID^
-title"DocCheck Sample Code"^
.\com\SteveSystems\People\*.java
pause
Thanks.
Message was edited by:
falc1

