To start including javadoc comments, you will need to do the following:
Thats just a very simple example of class documentation with an author and version as well as a short description of the Class. Methods should also have documentation.
As you can see there are keywords with the at symbol before them and then data that you want in this keyword.
One major point to note about javadoc and commenting in general is that it is completely futile and useless to comment after writing a piece of code in a method at the end of a project. Do it as you go along and you will definiately save yourself a lot of trouble. Get into the habit of labelling up odd bits of code that you would not know what it does immediately with comments after the code and in the method javadoc bit too.