NotifyDescriptor.YES_NO_OPTION,
NotifyDescriptor.QUESTION_MESSAGE, null, null);
Object retType = DialogDisplayer.getDefault().notify(dd);
if (retType == NotifyDescriptor.YES_OPTION) {
ProjectController pc = Lookup.getDefault().lookup(ProjectController.class);
pc.deleteWorkspace(workspace);
}
}
}
}