I want to generate the API for all the classes that are there in my Java 1.6 application. It should look like regular Java 1.5 API documentation.
views:
101answers:
4
+1
A:
With the javadoc
command? See the documentation. You can also use ant's javadoc task if you want.
Matthew Flaschen
2010-06-25 03:24:51
Answers the wrong question ...
Stephen C
2010-06-25 06:19:50
@Stephen, he changed the question significantly since I answered.
Matthew Flaschen
2010-06-25 06:33:06
@Matthew - Don't blame the OP. It was @fuzzy lollipop's "helpfully" edited version of the question that you were answering.
Stephen C
2010-06-25 07:29:48
at least I got them to really state what they wanted, the original question didn't make any sense to begin with.
fuzzy lollipop
2010-06-25 14:40:17
+1
A:
Are you using an IDE? If you are using Eclipse you can select the project you want to generate java docs on and from the menu select Project, Generate Javadoc...
leif
2010-06-25 03:25:49
+2
A:
You can’t produce Javadoc from jars of class files, not even rudimentary Javadoc. You can only generate Javadoc from source files, because that is where the Javadoc lives.
fuzzy lollipop
2010-06-25 04:43:37