1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugFloatValue extends XDebugAbstractValue {
6 public XDebugFloatValue(XDebugStackFrame variable, Node value) {
7 super(variable, value);
10 public boolean supportsValueModification() {
14 public void renderValueString(String data) {
18 public boolean verifyValue(String expression) {
20 Float.parseFloat(expression);
21 } catch (NumberFormatException e) {