Package org.guvnor.tools.utils

Examples of org.guvnor.tools.utils.VersionChooserDialog


        if (selectedFile == null
           || props == null
           || targetPart == null) {
            return;
        }
        VersionChooserDialog dialog =
            new VersionChooserDialog(targetPart.getSite().getShell(),
                                    selectedFile.getName(),
                                    getVersionEntries());
        if (dialog.open() == VersionChooserDialog.OK) {
            updateSelectedFile(dialog.getSelectedEntry());
            PlatformUtils.updateDecoration();
        }
     }
View Full Code Here


        if (selectedFile == null
           || props == null
           || targetPart == null) {
            return;
        }
        VersionChooserDialog dialog =
            new VersionChooserDialog(targetPart.getSite().getShell(),
                                    selectedFile.getName(),
                                    getVersionEntries());
        if (dialog.open() == VersionChooserDialog.OK) {
            compareWithSelectedVersion(dialog.getSelectedEntry());
        }
    }
View Full Code Here

TOP

Related Classes of org.guvnor.tools.utils.VersionChooserDialog

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.