1

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.

this is the screenshot

package-info.java

/**
*
*Details
*/

package mypackage;
4

1 回答 1

0

您想将 Javadoc 注释放在类声明之上(见下文)。有关在整个源代码中提供其中一些描述和其他元数据的快速指南,请参阅以下Javadoc 教程。

/**
 * My class description
 */
public class SSOhandler {

}
于 2013-01-15T05:42:01.350 回答