package net.sourceforge.phpeclipse.xdebug.php.model; import org.w3c.dom.Node; public class XDebugResourceValue extends XDebugAbstractValue { public XDebugResourceValue(XDebugVariable variable, Node varNode, String typeName) { super(variable, varNode, typeName); } public void setType(String typeName) { fType = XDebugAbstractValue.VALUETYPE_RESOURCE; fTypeName = typeName; } public void renderValueString(String data) { fValueString = "\"" + data + "\""; } public boolean supportsValueModification() { return true; } public boolean verifyValue(String expression) { return true; } }