c74d74ba8c61d0ab43967462baf7f3643847912a
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugResourceValue.java
1 package net.sourceforge.phpeclipse.xdebug.php.model;
2
3 import org.w3c.dom.Node;
4
5 public class XDebugResourceValue extends XDebugAbstractValue {
6         public XDebugResourceValue(XDebugVariable variable, Node varNode,
7                         String typeName) {
8                 super(variable, varNode, typeName);
9         }
10
11         public void setType(String typeName) {
12                 fType = XDebugAbstractValue.VALUETYPE_RESOURCE;
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 }