tags:

views:

149

answers:

1

I'd like to group the methods in the javadoc for my class. For example:

Admin methods:
   blah1
   blah2
Accessor methods:
   foo1
   foo2

Do you know of any way I can achieve this in javadoc? Are there any doclets available for doing this?

Thanks, Calum

+3  A: 

You probably need to create a custom doclet to generate the HTML according to your specific needs..

Ruben