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,
 
   8                 super(variable, varNode, typeName);
 
  11         public void setType(String typeName) {
 
  12                 fType = XDebugAbstractValue.VALUETYPE_RESOURCE;
 
  16         public void renderValueString(String data) {
 
  17                 fValueString = "\"" + data + "\"";
 
  20         public boolean supportsValueModification() {
 
  24         public boolean verifyValue(String expression) {