1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import net.sourceforge.phpeclipse.xdebug.core.Base64;
5 import org.eclipse.debug.core.DebugEvent;
6 import org.eclipse.debug.core.DebugException;
7 import org.w3c.dom.Node;
9 public class XDebugStringValue extends XDebugAbstractValue {
10 public XDebugStringValue(XDebugStackFrame variable, Node value) throws DebugException {
11 super(variable, value);
13 rowValue = new String(Base64.decode(rowValue));
15 setValueString(rowValue);
18 public boolean setValue(String expression) throws DebugException {
19 setValueString(expression);
20 fireEvent(new DebugEvent(this, DebugEvent.CHANGE, DebugEvent.CONTENT));
24 public boolean supportsValueModification() {