i know that we can create documentation from java source files. but how to do it?. thanks in advance.
|
|
Gowth, reade the javadoc docs: javadoc - The Java API Documentation Generator Generates HTML pages of API documentation from Java source files. This document contains JavadocTM examples for Microsoft Windows. http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html |
||
|
|
|
|
The There are also other tools, such as Doxygen, that perform similar tasks. |
||
|
|
|
|
It pretty much boils down to this: specially formatted comments and an application called Say you want to generate Javadoc for a function
Note the two stars to begin the comment, indicating it is JavaDoc: I highly recommend developing Java in an established IDE such as Eclipse or NetBeans. It will make generating JavaDocs as easy as hitting Project, Generate Javadoc. |
||||||
|
|
|
As a standalone tool(apart from IDE support) you can look at Java2HTML, quite simple and straightforward for operating outside the IDE. |
||
|
|
|
|
@gowth08, There's a minimum research to do before asking questions, it is quite rude. Few seconds to minutes on google would have given you the answer. |
||||||||
|
