
Java supports three types of comments. The first two are the // and
the /* */. The third type is called a documentation comment. It begins
with the character sequence /** and it ends with */.
Documentation comments allow you to embed information about your
program into the program itself. You can then use the javadoc utility
program to extract the information and put it into an HTML...