/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html */ package net.sourceforge.pmd.lang.java.rule.controversial; import net.sourceforge.pmd.Rule; import net.sourceforge.pmd.RuleContext; import net.sourceforge.pmd.lang.ast.Node; import net.sourceforge.pmd.lang.java.ast.JavaNode; import net.sourceforge.pmd.lang.java.rule.JavaRuleViolation; /** * The RuleViolation is extended by the VariableName. The VariableName is * required for showing what variable produces the UR DD or DU anomaly. * * @author Sven Jacob * @author Brian Remedios */ public class DaaRuleViolation extends JavaRuleViolation { private final String variableName; private final String type; public DaaRuleViolation(Rule rule, RuleContext ctx, Node node, String type, String msg, String var, int beginLine, int endLine) { super(rule, ctx, (JavaNode) node, msg); this.variableName = var; setLines(beginLine, endLine); this.type = type; } public String getVariableName() { return variableName; } public String getType() { return type; } }