FolderChildChooserDialog dialog = new FolderChildChooserDialog(getShell(), selectedChild, fSelection);
if (dialog.open() == IDialogConstants.OK_ID) {
List<IFolderChild> checkedElements = dialog.getCheckedElements();
fSelection = checkedElements;
fConditionLabel.setText(getLabel(fSelection));
notifyListeners(SWT.Modify, new Event());
/* Link might require more space now */
getShell().layout(true, true);
}
}