Supported javadoc tags

Currently UMLdoc generates output for the following javadoc tags, all unknown tags are skipped and do not produce output.

@author [author name]

Adds the specified author name to the model element documentation, output is only produced if you have selected the Generate authors doc option in the UMLdoc code generation settings.

@deprecated [text]

Adds a comment indicating that this API should no longer be used (even though it may continue to work).

@exception, @throws [exception type] [description]

Adds an exception description to the method documentation.

@param [param name] [description]

Adds a parameter description to the method documentation.

@return [description]

Adds a return parameter description to the method documentation.

@see [reference]

Adds a "See Also" heading with a link or text entry that points to a reference.

@serial [description]

Adds a comment indicating a default serializable field. The optional description should explain the meaning of the field and list the acceptable values.

@serialData [description]

Documents the sequences and types of data written by the writeObject method and all data written by the Externalizable.writeExternal method.

@serialField [name] [type] [description]

Documents an ObjectStreamField component of a Serializable class' serialPersistentFields member.

@since [release name]

Adds a description indicating that this change or feature has existed since the software release specified.

@version [version]

Adds a version to the method documentation. A doc comment may contain at most one @version tag.