posted 16 years ago
Hi
When I run javadoc the resultant documentation contains comments of the classes members but it does not include the classes comments. For example
/**
* class comment
*/
public class ClassExample {
/**
* method comment
*/
public methodExample {
int a = 1+2;
}
}
When I run javadoc tool I obtain an html file that contains the methodExample comment but it does not contain the ClassExample comment.
How can I use javadoc so that the resultant html files include the class comments.