Results 1 to 4 of 4
Thread: Java doc
- 09-06-2009, 05:14 PM #1
Member
- Join Date
- Jul 2008
- Posts
- 19
- Rep Power
- 0
-
Eclipse has javadoc as an option in its export menu.
- 09-06-2009, 05:46 PM #3
Senior Member
- Join Date
- Aug 2009
- Posts
- 2,388
- Rep Power
- 6
Also read The javadoc documentation and how to write cooments.
- 09-07-2009, 05:39 AM #4
Please read the links provided, for anyone new:
JavaDoc is a convention for writing comments which uses specific syntax. Some might be familiar with block comments:
/*
* Comment
*/
Javadoc is similar but starts with two **'s
/**
* Javadoc comment.
*/
Javadoc allows the JDK to write programatic documentation automatically. Very useful, and required in most educational/business environments.


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks