1
0
Fork 0

Fixing EstimateStatistic.staticFieldValue to pull from the right JSON element.

Converting EstimateStatistic to support Double typed statFieldValue
master
Philip Stehlik 2013-11-27 12:54:04 -08:00
parent 0c18c3bcd7
commit dbc8334520
1 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ import net.sf.json.JSONObject;
public class EstimateStatistic { public class EstimateStatistic {
private String statFieldId = null; private String statFieldId = null;
private int statFieldValue = 0; private Double statFieldValue = 0.0;
private String statFieldText = null; private String statFieldText = null;
/** /**
@ -49,8 +49,8 @@ public class EstimateStatistic {
Map val = (Map)json.get("statFieldValue"); Map val = (Map)json.get("statFieldValue");
statFieldValue = Field.getInteger(map.get("value")); statFieldValue = Field.getDouble(val.get("value"));
statFieldText = Field.getString(map.get("text")); statFieldText = Field.getString(val.get("text"));
} }
} }
@ -58,7 +58,7 @@ public class EstimateStatistic {
return statFieldId; return statFieldId;
} }
public int getFieldValue() { public Double getFieldValue() {
return statFieldValue; return statFieldValue;
} }