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

Examples of org.eclipse.php.internal.debug.ui.wizards.PHPExeEditDialog


        phpExe.getExecutable(), phpExe.getINILocation(),
        phpExe.getDebuggerID(), phpExe.isEditable());
    // phpExeToEdit.setLoadDefaultINI(phpExe.isLoadDefaultINI());
    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

Related Classes of org.eclipse.php.internal.debug.ui.wizards.PHPExeEditDialog

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.