Package org.python.pydev.ui.dialogs

Examples of org.python.pydev.ui.dialogs.InterpreterInputDialog.open()


                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
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.