1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugResourceValue extends XDebugAbstractValue {
6 public XDebugResourceValue(XDebugVariable variable, Node varNode, String typeName) {
7 super(variable, varNode, typeName);
10 public XDebugResourceValue(XDebugVariable variable, String typeName) {
11 super(variable, typeName);
14 public void setType(String typeName) {
15 fType = XDebugAbstractValue.VALUETYPE_RESOURCE;
19 public void renderValueString(String data) {
20 fValueString = "\"" + data + "\"";
23 public boolean supportsValueModification() {
27 public boolean verifyValue(String expression) {