1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.eclipse.debug.core.DebugException;
4 import org.w3c.dom.Node;
6 public class XDebugFloatValue extends XDebugAbstractValue {
7 public XDebugFloatValue(XDebugStackFrame variable, Node value) throws DebugException {
8 super(variable, value);
11 public boolean supportsValueModification() {
15 public void renderValueString(String data) {
19 public boolean verifyValue(String expression) {
21 Float.parseFloat(expression);
22 } catch (NumberFormatException e) {