Hi,
What is mean " Javadoc Comment "?
Is it automatically creating HTML based documentation?
Is it unique for Java?
Printable View
Hi,
What is mean " Javadoc Comment "?
Is it automatically creating HTML based documentation?
Is it unique for Java?
Javadoc
Pertaining to the tool that parses the declarations and documentation comments in a set of source files and produces a set of HTML pages describing the classes, inner classes, interfaces, constructors, methods, and fields. The Javadoc tool from Sun Microsystems is used for generating API documentation in HTML format from doc comments in source code. (Information taken from the SUN Javadoc tool web page: http://java.sun.com/j2se/javadoc/index.html).
Thanks......