| Generates an XML file that identifies all the classes that contain parameters, and all the
parameters within each component class. This XML is later converted into part of the Maven
generated HTML site.
To keep the -doclet parameter passed to javadoc simple, this class should not have any outside
dependencies.
Works in two passes: First we find any classes that have a field that has the parameter
annotation. Second we locate any subclasses of the initial set of classes, regardless of whether
they have a parameter or not.
|