Method template

Figure 2.77. Javadoc method template

Javadoc method template

Lets you define the template for method declarations.

Example 2.827. Method declaration with generated Javadoc

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