Enum template

Lets you define the template for enum declarations (includes inner enums).

Since 1.5

Figure 2.75. Javadoc enum template

Javadoc enum template

Enter a valid Javadoc comment. The Preview window will update in real-time to reflect your changes.

Example 2.853. Enum declaration with generated Javadoc

/**
 * DOCME!
 *
 * @author $author$
 * @version $Revision: #22 $, $Date: 2007/08/15 $
 */
public enum Week {
  ...
}