JAVADOC.BT
Bad tag in Javadoc comment
Description
This rule flags any bad tag in your code's Javadoc comments.
A Javadoc comment may use special tags which all begin with the @ character and allow Javadoc comments to provide additional formatting for the documentation. Check the HTML markup tags which the Javadoc comments may contain.
Example
/**
* This is a comment
* @unsupported tag
*/
package JAVADOC;
public class BT {
}
Repair
Use only supported tags.
|