public void item(final HTMLElement tr, final ICoverageTableItem item,
final Resources resources, final ReportOutputFolder base)
throws IOException {
final HTMLElement td = tr.td();
if (max > 0) {
final ICounter counter = item.getNode().getCounter(entity);
final int notCovered = counter.getNotCoveredCount();
bar(td, notCovered, Resources.REDBAR, resources, base);
final int covered = counter.getCoveredCount();
bar(td, covered, Resources.GREENBAR, resources, base);
}
}