|
@@ -24,6 +24,8 @@ public class ConfigVO {
|
|
|
private double allowableR2;
|
|
private double allowableR2;
|
|
|
|
|
|
|
|
private double rangeValue;
|
|
private double rangeValue;
|
|
|
|
|
+
|
|
|
|
|
+ private double uncertainty;
|
|
|
public String[] getModel() {
|
|
public String[] getModel() {
|
|
|
return model;
|
|
return model;
|
|
|
}
|
|
}
|
|
@@ -159,4 +161,12 @@ public class ConfigVO {
|
|
|
public void setSupportItems(boolean supportItems) {
|
|
public void setSupportItems(boolean supportItems) {
|
|
|
isSupportItems = supportItems;
|
|
isSupportItems = supportItems;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ public double getUncertainty() {
|
|
|
|
|
+ return uncertainty;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setUncertainty(double uncertainty) {
|
|
|
|
|
+ this.uncertainty = uncertainty;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|