Package org.eclipse.php.internal.debug.core.zend.model

Examples of org.eclipse.php.internal.debug.core.zend.model.PHPValue


      String name = variable.getName();
      String title = PHPDebugUIMessages.PHPPrimitiveValueEditor_0;
      String message = NLS.bind(
          PHPDebugUIMessages.PHPPrimitiveValueEditor_1,
          new String[] { name });
      PHPValue value = (PHPValue) variable.getValue();
      String initialValue = value.getValue();
      PrimitiveValidator validator = new PrimitiveValidator();
      InputDialog dialog = new InputDialog(shell, title, message,
          initialValue, validator);
      if (dialog.open() == Window.OK) {
        String stringValue = dialog.getValue();
View Full Code Here


  private class PHPWatchExpressionResult implements IWatchExpressionResult,
      IWatchExpressionResultExtension {
    public IValue getValue() {
      Expression value = getExpression(debugTarget, fExpressionText);
      IValue iValue = new PHPValue(debugTarget, value);
      return iValue;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.debug.core.zend.model.PHPValue

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.