JavaDoc

Code

Note: Since Java 5 you can use {@code} instead of the actual HTML code tags - helps cut back on clutter.

{@code fileName}
* @return          <code>true</code> if the image is completely
*                  loaded and was painted successfully;
*                  <code>false</code> otherwise.

Inherit

If you use the inheritDoc tag when a class is inheriting an interface the javadocs are also inherited (also keeps CheckStyle happy):

/**
 * {@inheritDoc}
 */

Line break

<p> and <br>:

/**
 * Simple function to create a repository.
 * <p>
 * - The repository must be created using this function...<br>
 * This text will start on a new line...

List

* <ul>
* <li>The Component to draw on
* <li>The current clip
* <li>The current color
* </ul>

Note: For a numbered list, use the <ol> tag (rather than <ul>).

see

Note: Almost always better to use the link tag (see above).

@see reference.

@see package.class#member label:

* @see com.mycompany.lucene.IndexUpdate#acceptExtension

URL:

* @see <a href="spec.html#section">Java Spec</a>