Package org.criticalfailure.torchlight.core.application.ui.dialogs

Examples of org.criticalfailure.torchlight.core.application.ui.dialogs.AlertDetailDialog


                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;
                    }
                }
            }
View Full Code Here

TOP

Related Classes of org.criticalfailure.torchlight.core.application.ui.dialogs.AlertDetailDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.