1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugFloatValue extends XDebugAbstractValue {
7 public XDebugFloatValue(XDebugVariable variable, Node varNode,
9 super(variable, varNode, TypeName);
13 public boolean supportsValueModification() {
17 public void setType(String typeName) {
18 fType = XDebugAbstractValue.VALUETYPE_FLOAT;
22 public void renderValueString(String data) {
26 public boolean verifyValue(String expression) {
28 Float.parseFloat(expression);
29 } catch (NumberFormatException e) {