I have created a javadoc using eclipse and the package information is contained in
package-info.java. my problem is in the class summary field the name of the class is mentioned but there is no detail in front of it.I want to put some information in this field.
This is the javadoc page where package details are mentioned.

package-info.java
/**
*
*Details
*/
package mypackage;
You want to put the Javadoc comment above the class declaration (See below). See the following Javadoc tutorial for a quick guide to providing some of these descriptions and other metadata throughout your source code.