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

Source Code of org.eclipse.php.internal.debug.ui.actions.PHPVariableValueEditor$PrimitiveValidator

/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     IBM Corporation - initial API and implementation
*     Zend Technologies
*******************************************************************************/
package org.eclipse.php.internal.debug.ui.actions;

import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.IVariable;
import org.eclipse.debug.internal.ui.DebugUIPlugin;
import org.eclipse.debug.ui.actions.IVariableValueEditor;
import org.eclipse.jface.dialogs.IInputValidator;
import org.eclipse.jface.dialogs.InputDialog;
import org.eclipse.jface.window.Window;
import org.eclipse.osgi.util.NLS;
import org.eclipse.php.internal.debug.core.zend.model.PHPValue;
import org.eclipse.php.internal.debug.ui.PHPDebugUIMessages;
import org.eclipse.swt.widgets.Shell;

/**
* A variable value editor that prompts the user to set a primitive's value.
*/
public class PHPVariableValueEditor implements IVariableValueEditor {

  /**
   * Creates a new editor for a variable with the given signature
   *
   * @param signature
   *            the signature of the primitive to be edited
   */
  public PHPVariableValueEditor() {

  }

  /*
   * (non-Javadoc)
   *
   * @see
   * org.eclipse.debug.ui.actions.IVariableValueEditor#editVariable(org.eclipse
   * .debug.core.model.IVariable, org.eclipse.swt.widgets.Shell)
   */
  public boolean editVariable(IVariable variable, Shell shell) {
    try {
      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();
        variable.setValue(stringValue);
      }
    } catch (DebugException e) {
      DebugUIPlugin.errorDialog(shell,
          PHPDebugUIMessages.PHPPrimitiveValueEditor_2,
          PHPDebugUIMessages.PHPPrimitiveValueEditor_3, e);
    }
    return true;
  }

  /*
   * (non-Javadoc)
   *
   * @see
   * org.eclipse.debug.ui.actions.IVariableValueEditor#saveVariable(org.eclipse
   * .debug.core.model.IVariable, java.lang.String,
   * org.eclipse.swt.widgets.Shell)
   */
  public boolean saveVariable(IVariable variable, String expression,
      Shell shell) {
    return false;
  }

  /**
   * Input validator for primitive types
   */
  protected class PrimitiveValidator implements IInputValidator {
    /*
     * (non-Javadoc)
     *
     * @see
     * org.eclipse.jface.dialogs.IInputValidator#isValid(java.lang.String)
     */
    public String isValid(String newText) {
      // TODO Add some error checking code
      return null;
    }
  }

}
TOP

Related Classes of org.eclipse.php.internal.debug.ui.actions.PHPVariableValueEditor$PrimitiveValidator

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.