If your java project is getting bigger then it is good idea to create Javadoc of the project. So that it gets easy to understand the class and method usage.
Follow the instruction shown below to create Javadoc for your project.
1. You can use the following comment style used in eclipse while generating Javadoc.
/****Javadoc comment**
*/
2. Click Projects in the menu and then click on Generate Javadoc.
3. This will open up the window that asks user for any additional setting in the Javadoc. For example, generate Javadoc for the public/private API.
4. After this step wizard asks for the other features that are needed for the javadoc. Select as per needed.
5. Click Finish and javadoc will be created.
I hope information above helps. If you’ve suggestion, corrections then don’t forget to post it in comments.