Display display = Display.getDefault();
Shell shell = new Shell(display, SWT.RESIZE | SWT.APPLICATION_MODAL | SWT.DIALOG_TRIM);
shell.setText("Select excluded types");
SelectTypesDialog dialog = new SelectTypesDialog(shell, types, activePage.getExcludedTypes());
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
List<String> selectedTypes = dialog.getSelectedTypes();