BTIJDC - Bad Tag In JavaDoc Comments
This rule verifies code against accidental use of improper JavaDoc tags.
Wrong
/** Class BTIJDC
* @BAD_TAG_1
* @version 1.0 08-Jan-2000
* @author TogetherSoft
*/
public class BTIJDC {
/**
* Attribute attr
* @BAD_TAG_2
* @supplierCardinality 0..*
* @clientCardinality 1
*/
private int attr;
/** Operation oper
* @BAD_TAG_3
* @return int
*/
public int oper () {}
}
Tip: Replace misspelled tags. Or if your JavaDoc tool (doclet, etc.) uses some non-standard tags, add them to the list of valid tags.