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,String TypeName) {
8 super(variable, varNode,TypeName);
12 public XDebugFloatValue(XDebugVariable variable,String TypeName) {
13 super(variable,TypeName);
18 public boolean supportsValueModification() {
23 public void setType(String typeName) {
24 fType=XDebugAbstractValue.VALUETYPE_FLOAT;
28 public void renderValueString(String data) {
32 public boolean verifyValue(String expression) {
34 Float.parseFloat(expression);
35 } catch (NumberFormatException e) {
41 /*public String toString() {