Package org.erlide.ui.dialogs

Examples of org.erlide.ui.dialogs.AddInterpretedModulesSelectionDialog


        });
    }

    public static List<IErlModule> getModulesFromAddModulesDialog(final Shell shell) {
        final List<IErlModule> result = Lists.newArrayList();
        final AddInterpretedModulesSelectionDialog dialog = new AddInterpretedModulesSelectionDialog(
                shell);
        final int resultCode = dialog.open();
        if (resultCode != IDialogConstants.OK_ID) {
            return result;
        }
        final Object[] dialogResult = dialog.getResult();
        if (dialogResult == null || dialogResult.length == 0) {
            return result;
        }
        final IErlModel model = ErlangEngine.getInstance().getModel();
        for (final Object o : dialogResult) {
View Full Code Here

TOP

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

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.