1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugFloatValue extends XDebugAbstractValue {
6 public XDebugFloatValue(XDebugVariable variable, Node varNode,String TypeName) {
7 super(variable, varNode,TypeName);
10 public boolean supportsValueModification() {
14 public void setType(String typeName) {
15 fType = XDebugAbstractValue.VALUETYPE_FLOAT;
19 public void renderValueString(String data) {
23 public boolean verifyValue(String expression) {
25 Float.parseFloat(expression);
26 } catch (NumberFormatException e) {