aspose file tools
The moose likes Java in General and the fly likes constant-values.html Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "constant-values.html" Watch "constant-values.html" New topic
Author

constant-values.html

Mathias Andrae
Greenhorn

Joined: Feb 04, 2002
Posts: 23
Do you know any reason, why javadoc only generates the constant-values.html and no more files?
I got these message:
javadoc: No public or protected classes found to document.
Generating H:\entwick\java\test\intern\javadoc\constant-values.html...
But there are public and protected classes!!!
Any idea?
Sayed Ibrahim Hashimi
Ranch Hand

Joined: May 17, 2001
Posts: 148
It sounds like the javadoc tool can not locate your files. You may have to specify the sourcepath
So lets say that your .java files are in the C:\Java\test\ directory
then you would do:
C:>javadoc -sourcepath C:\Java\test\
or
C:\Java\test>javadoc -sourcepath "."
If this doesn't work then also try specifying the class path in the same manner using the -classpath argument.
Hope this helps.


SCJP 1.4<br /><a href="http://www.cise.ufl.edu/~sih" target="_blank" rel="nofollow">www.cise.ufl.edu/~sih</a>
Mathias Andrae
Greenhorn

Joined: Feb 04, 2002
Posts: 23
Thanks for your help.
But it was a more easier problem.
There were some sourcefile placed twice in different directories. And I suppose javadoc got some problem with this, while generating the doc-files.
After deleting the duplicates it worked perfectly.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: constant-values.html
 
Similar Threads
Javadoc - only public members?
Generating javadoc for JSP
Enums Problem
Calendar.MONTH iz zero based, by YEAR and DAY_OF_MONTH are not
javadoc: No public or protected classes found to document.