Description:
This rule verifies code against accidental use of improper Javadoc tags.
Example:
package audit;
/**
* Class BTIJDC
* @BAD_TAG_1
* @version 1.0 08-Jan-2000
* @author TogetherSoft
*/
public class BTIJDC {
/**
* Attribute attr
* @BAD_TAG_2
*/
private int attr;
/** Operation oper
* @BAD_TAG_3
* @return int
*/
public int oper() {}
}