Package org.eclipse.php.internal.debug.ui.wizards

Examples of org.eclipse.php.internal.debug.ui.wizards.PHPExeEditDialog.open()


    phpExeToEdit.setSapiType(phpExe.getSapiType());
    phpExeToEdit.setLoadDefaultINI(phpExe.isLoadDefaultINI());
    PHPExeEditDialog dialog = new PHPExeEditDialog(getShell(),
        phpExeToEdit, phpExes.getAllItems());
    dialog.setTitle(PHPDebugUIMessages.InstalledPHPsBlock_8);
    if (dialog.open() != Window.OK) {
      return;
    }
    phpExe.setName(phpExeToEdit.getName());
    phpExe.setExecutable(phpExeToEdit.getExecutable());
    phpExe.setINILocation(phpExeToEdit.getINILocation());
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.