Importing the XDebugProxy code in the HEAD. The repo was tagged with T_BEFORE_XDEBUGP...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugStringValue.java
index b2d0231..17168e3 100644 (file)
@@ -5,28 +5,34 @@ import org.w3c.dom.Node;
 public class XDebugStringValue extends XDebugAbstractValue {
 
        private String fDataString;
-
        public XDebugStringValue(XDebugVariable variable, Node varNode,
                        String typeName) {
                super(variable, varNode, typeName);
-               fDataString = null;
+               fDataString=null;
+       }
+       
+       public XDebugStringValue(XDebugVariable variable, String typeName) {
+               super(variable, typeName);
+               fDataString=null;
        }
 
+
        public void setType(String typeName) {
-               fType = XDebugAbstractValue.VALUETYPE_STRING;
-               fTypeName = typeName;
+               fType=XDebugAbstractValue.VALUETYPE_STRING;
+               fTypeName=typeName;
 
        }
 
        public void renderValueString(String data) {
-               fDataString = data;
-               fValueString = "\"" + data + "\"";
+               fDataString=data;
+               fValueString="\""+data+"\"";
        }
 
        public boolean supportsValueModification() {
                return true;
        }
 
+       
        public String toString() {
                return fDataString;
        }