Examples of PHPWebPageLaunchDialog


Examples of org.eclipse.php.internal.server.ui.launching.PHPWebPageLaunchDialog

                boolean breakAtFirstLine = PHPProjectPreferences
                        .getStopAtFirstLine(project);
                String selectedURL = null;
                boolean showDebugDialog = true;
                if (obj instanceof IScriptProject) {
                    final PHPWebPageLaunchDialog dialog = new PHPWebPageLaunchDialog(
                            mode, (IScriptProject) obj, basePath);
                    final int open = dialog.open();
                    if (open == PHPWebPageLaunchDialog.OK) {
                        defaultServer = dialog.getServer();
                        selectedURL = dialog.getPhpPathString();
                        phpPathString = dialog.getFilename();
                        breakAtFirstLine = dialog.isBreakAtFirstLine();
                        showDebugDialog = false;
                    } else {
                        continue;
                    }
                }
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.