*
* Note that it will (currently) only work for changing local values that are in the topmost frame.
* -- python has no way of making it work right now (see: pydevd_vars.changeAttrExpression)
*/
public void setValue(String expression) throws DebugException {
ChangeVariableCommand changeVariableCommand = getChangeVariableCommand(target, expression);
target.postCommand(changeVariableCommand);
this.value = expression;
target.fireEvent(new DebugEvent(this, DebugEvent.CONTENT | DebugEvent.CHANGE));
}