Java comments

From wikinotes

There are 3x types of comments in java.

// inline comment
/* multiline
   comment */

In java, docstrings are written above the item being documented.

/** document comments (docstrings)
 *  @param args    string-array of arguments passed at
 *                 the commandline invocation.
 */
static void main(String args[])