Book a Demo

Author Topic: Custom Javadoc tags importing into notes field  (Read 2461 times)

rsipin

  • EA Novice
  • *
  • Posts: 9
  • Karma: +0/-0
    • View Profile
Custom Javadoc tags importing into notes field
« on: September 07, 2012, 04:55:45 am »
When reverse engineering Java code into a model, I'm getting inconsistent results with custom tags (i.e. @summary) getting imported into the Notes field.  Two examples follow:

Example #1 - successful R.E.
/**
 * @summary provides business logic decisions to
 *       the agencySelectionView.
 * @usage Interacts with the registry service and
 *       provides methods for the views.
 * @author rsmith
 * @since 1.0
 */

The above imports OK, with the Author tag coming into the Author attribute for the Class. Note field reads as follows:
@summary provides business logic decisions to the agencySelectionView.
@usage Interacts with the registry service and provides methods for the views.
@since 1.0

Example #2 - Unsuccessful R.E.
/**
* @summary   Stores information for the details tab and provides a level of redirection                   
*                         to the web services for requesting the regional authorities at run-time
*                         as well as the CustomerRegistryDao for file I/O operations on agencies.
* @desc      The DetailsController class contains the business logic for the
*                         details tab located in webapp/content/details.xhtml.  This controller
*                         stores data about the details page and the currently selected agency
*                         as a session scoped bean.  This provides persistence across multiple views
*                         and browser refreshes for the duration of the session which defaults to thirty
*                         minutes of inactivity or eight hours as defined by the identity management system.
* @usage     See description.
* @scope     This class is accessed by the DetailsView class and interacts with the CustomerRegistryDao
*                         and the web services via the PortalService class.  It retrieves information about the
*                         user's agencies which is stored in the userModel class.
* @author    Jake Jones
* @since     1.0.0
*/

Notes section is blank, and author tag is not read.  Is this simply a matter of comments being too long?

Ideally, I'd like to be able to import custom tags to tagged values in the class properties.

Any help would be appreciated.
Thanks - Rick