.visitGroup(group.name);
for (final GroupElement child : group.children) {
createReport(groupVisitor, child);
}
} else {
final IBundleCoverage bundle = createBundle(group);
log(format("Writing group \"%s\" with %s classes",
bundle.getName(),
Integer.valueOf(bundle.getClassCounter().getTotalCount())));
final SourceFilesElement sourcefiles = group.sourcefiles;
final AntResourcesLocator locator = new AntResourcesLocator(
sourcefiles.encoding, sourcefiles.tabWidth);
locator.addAll(sourcefiles.iterator());
if (!locator.isEmpty()) {