Package org.eclipse.debug.internal.ui.actions.variables

Examples of org.eclipse.debug.internal.ui.actions.variables.ChangeVariableValueInputDialog


          PHPDebugUIMessages.PHPPrimitiveValueEditor_1,
          new Object[] { name });
      String initialValue = getValueString(variable);

      PrimitiveValidator validator = new PrimitiveValidator(variable);
      ChangeVariableValueInputDialog dialog = new ChangeVariableValueInputDialog(
          shell, title, message, initialValue, validator);
      if (dialog.open() == Window.OK) {
        String stringValue = dialog.getValue();
        variable.setValue(stringValue);
      } else {

      }
    } catch (DebugException e) {
View Full Code Here

TOP

Related Classes of org.eclipse.debug.internal.ui.actions.variables.ChangeVariableValueInputDialog

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.