KongaDialog dialog = new WizardStyleDialog(UiUtils.getActiveWindow(), "Select Which Objects To Copy",
selector, KongaDialog.CONTINUE_CANCEL, true);
dialog.setContinueButtonAsDefault();
dialog.manageLocation(SelectiveDeepCopyUi.class);
dialog.setVisible(true);
return dialog.wasOkPressed() ? selector.getItemsToExclude() : null;
}
}