Javadoc, how to generate HTML with comment?

This is my code:

/**

* Registers the quantity of print page.

*

*

* @param n page quantity

* @return void

* @see generatePrnFile

*/

publicvoid setQuantity(int n)

{

this.pageQty = n;

}

This is how I use javaDoc

javadoc *.java

How can i have the comment, description or summary displayed on my HTML? Do I need to use any doclet and where to download?

Message was edited by:

zerg2000

[678 byte] By [bronze-starDukes] at [2007-11-26 12:14:55]
# 1
You can get all the helps from the following site : http://java.sun.com/j2se/javadoc/writingdoccomments/
bronzestar at 2007-7-7 14:18:08 > top of Java-index,Archived Forums,Socket Programming...
# 2
yes, i have already read that.i even used the same example. but my generated html is without the description or comment.can you please tell me what is the syntax of the command line to use javadoc?thanks
bronzestar at 2007-7-7 14:18:08 > top of Java-index,Archived Forums,Socket Programming...