Change visibility of net.sourceforge.phpeclipse.xdebug.php.model.XDebugAbstractValue...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugAbstractValue.java
index 6e69d0b..32ea3fa 100644 (file)
@@ -24,7 +24,7 @@ import org.w3c.dom.NodeList;
 
 public abstract class XDebugAbstractValue  extends XDebugElement implements IValue {
        private IVariable[] fVariables;
-       protected String fValueString;
+       private String fValueString;
        private String fTypeName;
        private boolean fhasChanged;
 
@@ -127,4 +127,8 @@ public abstract class XDebugAbstractValue  extends XDebugElement implements IVal
        public boolean supportsValueModification() {
                return false;
        }
+       
+       public void setValueString(String valueString) {
+               fValueString = valueString;
+       }
 }
\ No newline at end of file