1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugResourceValue extends XDebugAbstractValue {
6 private String fDataString;
8 public XDebugResourceValue(XDebugVariable variable, Node varNode, String typeName) {
9 super(variable, varNode, typeName);
13 public XDebugResourceValue(XDebugVariable variable, String typeName) {
14 super(variable, typeName);
19 public void setType(String typeName) {
20 fType = XDebugAbstractValue.VALUETYPE_RESOURCE;
24 public void renderValueString(String data) {
26 fValueString = "\""+data+"\"";
29 public boolean supportsValueModification() {
33 public String toString() {
37 public boolean verifyValue(String expression) {