this(new HashMap<String, IntWrapper>(), new HashMap<String, IntWrapper>(), new HashMap<Severity, Set<Rule>>());
}
@Override
public int getCount(Severity severity) {
IntWrapper count = countsBySeverity.get(severity.toString());
return count != null? count.getInt(): 0;
}