Lines Matching refs:oldValue

178                 Object oldValue = oObj.getPropertyValue(propName);  in testProperty()  local
180 if( (oldValue==null) || utils.isVoid(oldValue) ) in testProperty()
204 newValue = getNewValue(propName, oldValue); in testProperty()
220 log.println("old = " + toString(oldValue)); in testProperty()
249 checkResult(propName, oldValue, newValue, resValue, exception); in testProperty()
284 protected void checkResult(String propName, Object oldValue, in checkResult() argument
309 if (util.utils.isVoid(oldValue) && !maybeVoid) in checkResult()
314 else if (oldValue == null) in checkResult()
361 if (!compare(resValue, oldValue)) in checkResult()
366 if (!util.utils.isVoid(oldValue) && oldValue instanceof Any) in checkResult()
368oldValue = AnyConverter.toObject(new Type(((Any) oldValue).getClass()), oldValue); in checkResult()
397 if ((!compare(resValue, newValue)) || (compare(resValue, oldValue))) in checkResult()
402 if (!util.utils.isVoid(oldValue) && oldValue instanceof Any) in checkResult()
404oldValue = AnyConverter.toObject(new Type(((Any) oldValue).getClass()), oldValue); in checkResult()
418 if ((!compare(resValue, oldValue)) || (!resValue.equals(oldValue))) in checkResult()
439 if (!util.utils.isVoid(oldValue) && oldValue instanceof Any) in checkResult()
441oldValue = AnyConverter.toObject(new Type(((Any) oldValue).getClass()), oldValue); in checkResult()
467 protected Object getNewValue(String propName, Object oldValue) in getNewValue() argument
470 return ValueChanger.changePValue(oldValue); in getNewValue()