public void widgetSelected(SelectionEvent e) {
if (MessageDialog.openQuestion(part.getBaseComposite()
.getShell(), "Delete IssueCard",
"Do you really want to delete "
+ new ShortLabelProvider().getText(ic) + "?"))
new DeleteIssueCardCommand(ic).runAsJob();
}
};
}