Table table = toolkit.createTable(container, SWT.CHECK | SWT.BORDER | SWT.FULL_SELECTION | SWT.MULTI | SWT.V_SCROLL);
table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
viewer = new CheckboxTableViewer(table);
viewer.setContentProvider(ArrayContentProvider.getInstance());
viewer.setCheckStateProvider(new ICheckStateProvider() {
public boolean isChecked(Object element) {
return isIncludedRepo(element);
}
public boolean isGrayed(Object element) {