Bundle bundle = bundles[i];
BundleInfo info = this.bundleService.getInfo(bundle);
if (info.getStartLevel() >= bundleLevelThreshold) {
String name = getNameToShow(info) + printFragments(info) + printHosts(info);
String version = info.getVersion();
table.addRow().addContent(info.getBundleId(), getStateString(info.getState()),
info.getStartLevel(), version, name);
}
}
table.print(System.out, !noFormat);