table.column("Symbolic Name");
table.column("Version");
table.emptyTableText("No matching bundles");
for (Resource resource : resources) {
table.addRow().addContent(emptyIfNull(resource.getPresentationName()),
emptyIfNull(resource.getSymbolicName()),
emptyIfNull(resource.getVersion()));
}
table.print(System.out, !noFormat);