Lines Matching refs:oldValue
177 Object oldValue = oObj.getPropertyValue(propName); in testProperty() local
179 if( (oldValue==null) || utils.isVoid(oldValue) ) in testProperty()
203 newValue = getNewValue(propName, oldValue); in testProperty()
219 log.println("old = " + toString(oldValue)); in testProperty()
248 checkResult(propName, oldValue, newValue, resValue, exception); in testProperty()
283 protected void checkResult(String propName, Object oldValue, in checkResult() argument
308 if (util.utils.isVoid(oldValue) && !maybeVoid) in checkResult()
313 else if (oldValue == null) in checkResult()
360 if (!compare(resValue, oldValue)) in checkResult()
365 if (!util.utils.isVoid(oldValue) && oldValue instanceof Any) in checkResult()
367 … oldValue = AnyConverter.toObject(new Type(((Any) oldValue).getClass()), oldValue); in checkResult()
396 if ((!compare(resValue, newValue)) || (compare(resValue, oldValue))) in checkResult()
401 if (!util.utils.isVoid(oldValue) && oldValue instanceof Any) in checkResult()
403 … oldValue = AnyConverter.toObject(new Type(((Any) oldValue).getClass()), oldValue); in checkResult()
417 if ((!compare(resValue, oldValue)) || (!resValue.equals(oldValue))) in checkResult()
438 if (!util.utils.isVoid(oldValue) && oldValue instanceof Any) in checkResult()
440 … oldValue = AnyConverter.toObject(new Type(((Any) oldValue).getClass()), oldValue); in checkResult()
466 protected Object getNewValue(String propName, Object oldValue) in getNewValue() argument
469 return ValueChanger.changePValue(oldValue); in getNewValue()