Package org.erlide.ui.dialogs

Examples of org.erlide.ui.dialogs.OpenModuleDialog


        final IWorkbenchWindow window = PlatformUI.getWorkbench()
                .getActiveWorkbenchWindow();
        if (window == null) {
            return null;
        }
        final OpenModuleDialog dialog = new OpenModuleDialog(window.getShell());
        final int resultCode = dialog.open();
        if (resultCode != IDialogConstants.OK_ID) {
            return null;
        }

        final Object[] result = dialog.getResult();
        return result;
    }
View Full Code Here

TOP

Related Classes of org.erlide.ui.dialogs.OpenModuleDialog

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.