including mi own words to a generated javadoc?
hello! i would like to know how can i include my own information on a javadoc document. i know i could edit the .html with an editor but im sure that there is another better way.If anyone could help me i would be very pleased.thanks.
[269 byte] By [
laldean] at [2007-9-27 2:51:05]

Could you be more specific? Do you want to add comments to at the member, class, package or overview level? Or add comments altogether separate from any of those levels? On which page would you like your comments to appear?-Doug KramerJavadoc team
Hello...
If you mean you would like the javadoc to contain the description of your classes, methods.... you must write doc comments as described in that document
http://java.sun.com/j2se/javadoc/writingdoccomments/index.html
For example you would get:
/**
* This class represents a lot in my project ;-)
*
* @see java.lang.Object
*/
public class MyClass {
}
Hope this is what you meant !!
karau
karau at 2007-7-4 23:10:49 >
