Lines Matching refs:maxVal
56 private double maxVal = 0; field in _XAccessibleValue
93 if (curVal < minVal || maxVal < curVal) { in _getCurrentValue()
94 log.println("" + (curVal - minVal) + "," + (maxVal - curVal)); in _getCurrentValue()
96 + minVal + "," + maxVal + "]"); in _getCurrentValue()
142 if (newVal > maxVal) newVal -= 2; in _setCurrentValue()
169 result &= oObj.setCurrentValue(getObjectValue(maxVal, val.getClass())); in _setCurrentValue()
170 log.println("Setting to "+ getObjectValue(maxVal, val.getClass())); in _setCurrentValue()
173 partResult = Math.abs(maxVal - resVal) < 0.00001; in _setCurrentValue()
194 oObj.setCurrentValue(getObjectValue(maxVal + 1, val.getClass())); in _setCurrentValue()
195 log.println("Setting to "+ getObjectValue(maxVal +1 , val.getClass())); in _setCurrentValue()
198 partResult = Math.abs(maxVal - resVal) < 0.00001; in _setCurrentValue()
258 maxVal = Double.MAX_VALUE ;
261 maxVal = getDoubleValue(val);
263 log.println("Max is " + val.getClass()+ " = " + maxVal);
265 result &= maxVal >= minVal;