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

