Fix variable view value modification and refactored XDebugAbstractValue and derived...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugStringValue.java
index 841b9b7..58bcf24 100644 (file)
@@ -1,22 +1,27 @@
 package net.sourceforge.phpeclipse.xdebug.php.model;
 
+import net.sourceforge.phpeclipse.xdebug.core.Base64;
+
+import org.eclipse.debug.core.DebugEvent;
 import org.eclipse.debug.core.DebugException;
 import org.w3c.dom.Node;
 
 public class XDebugStringValue extends XDebugAbstractValue {
        public XDebugStringValue(XDebugStackFrame variable, Node value) throws DebugException {
                super(variable, value);
-       }
 
-       public void renderValueString(String data) {
-               setValueString("\"" + data + "\"")/*fValueString = "\"" + data + "\""*/;
+               rowValue = new String(Base64.decode(rowValue));
+
+               setValueString(rowValue);
        }
 
-       public boolean supportsValueModification() {
+       public boolean setValue(String expression) throws DebugException {
+               setValueString(expression);
+               fireEvent(new DebugEvent(this, DebugEvent.CHANGE, DebugEvent.CONTENT));
                return true;
        }
 
-       public boolean verifyValue(String expression) {
+       public boolean supportsValueModification() {
                return true;
        }
 }
\ No newline at end of file