This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
javadoc: No public or protected classes found to document.
Robin Clark
Ranch Hand
Joined: Dec 17, 2003
Posts: 81
posted
0
I have 5 classes in my directory which is named "vss". Each of these classes is in the vss directory. When I run the command:
All of the classes are documented except for one. When I try to run javadoc on just that class:
I get the error message:
This is the second time I've had this problem in the past two days, so I guess I need to figure it out instead of re-organizing my classes like I did the last time! Here is the first portion of Session.java:
Layne Lund
Ranch Hand
Joined: Dec 06, 2001
Posts: 3061
posted
0
It's been a while since I ran javadoc by hand. More recently I have an ant build script that automates many such tasks for me. I suspect that you don't need the .java extension. Try removing it and see if that fixes your problem. Layne