Method template

Lets you define the template for method declarations.

Figure 2.78. Javadoc method template

Javadoc method template

The Preview window will update in real-time to reflect your changes.

Example 2.856. Method declaration with generated Javadoc

/**
 * DOCME!
 *
 * @param source DOCME!
 *
 * @throws SyntaxException DOCME!
 */
public void compile(File source) throws SyntaxException {
}