if (showTitle)
{
label = new Label(this, SWT.NONE);
label.setText("Select libraries to include");
}
LibStore store = new LibStore();
Set<Library> libs = store.getLibraries();
Group libGroup = createGroup(this, "Libraries");
for (Library library : libs)
{
Button b = new Button(libGroup, SWT.CHECK);