Set the range of the data
(double minValue, double maxValue)
| 241 | * Set the range of the data |
| 242 | */ |
| 243 | public void setRange(double minValue, double maxValue) { |
| 244 | if (!Double.isNaN(minValue)) { |
| 245 | this.minData = minValue; |
| 246 | } |
| 247 | if (!Double.isNaN(maxValue)) { |
| 248 | this.maxData = maxValue; |
| 249 | } |
| 250 | |
| 251 | isCalibrated = false; |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * Adds the range to the existing range, widening if neccessary |
no outgoing calls
no test coverage detected