if(selection instanceof IStructuredSelection) {
Object obj = ((IStructuredSelection)selection).getFirstElement();
logger.trace("obj: " + obj);
if(obj instanceof Alert) {
AlertDetailDialog dialog = (AlertDetailDialog)appContext.getBean("alertDetailDialog",
new Object[] { getSite().getShell(), obj });
logger.trace("dialog: " + dialog);
dialog.setBlockOnOpen(true);
dialog.open();
dialog = null;
}
}
}