remove unused constructor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugStringValue.java
1 package net.sourceforge.phpeclipse.xdebug.php.model;
2
3 import org.w3c.dom.Node;
4
5 public class XDebugStringValue extends XDebugAbstractValue {
6         public XDebugStringValue(XDebugVariable variable, Node varNode,
7                         String typeName) {
8                 super(variable, varNode, typeName);
9         }
10
11         public void setType(String typeName) {
12                 fType = XDebugAbstractValue.VALUETYPE_STRING;
13                 fTypeName = typeName;
14         }
15
16         public void renderValueString(String data) {
17                 fValueString = "\"" + data + "\"";
18         }
19
20         public boolean supportsValueModification() {
21                 return true;
22         }
23
24         public boolean verifyValue(String expression) {
25                 return true;
26         }
27 }