Examples of CenteredWizardDialog


Examples of de.fu_berlin.inf.dpp.ui.wizards.dialogs.CenteredWizardDialog

    public static Integer openWizard(final Shell parentShell,
        final Wizard wizard, final Point initialSize) {
        try {
            return Utils.runSWTSync(new Callable<Integer>() {
                public Integer call() {
                    WizardDialog wizardDialog = new CenteredWizardDialog(
                        parentShell, wizard, initialSize);
                    wizardDialog.setHelpAvailable(false);
                    return wizardDialog.open();
                }
            });
        } catch (Exception e) {
            log.warn("Error opening wizard " + wizard.getWindowTitle(), e);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.