Package org.python.pydev.ui.dialogs

Examples of org.python.pydev.ui.dialogs.InterpreterInputDialog


                    reportAutoConfigProblem(null);
                    return null;
                }
            } else {

                InterpreterInputDialog dialog = new InterpreterInputDialog(getShell(), "Select interpreter",
                        "Enter the name and executable of your interpreter", this);

                logger.println("- Opening dialog to request executable (or jar).");
                int result = dialog.open();

                if (result == Window.OK) {
                    interpreterNameAndExecutable = dialog.getKeyAndValueEntered();
                } else {
                    return null;
                }
            }
View Full Code Here

TOP

Related Classes of org.python.pydev.ui.dialogs.InterpreterInputDialog

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.