Lines Matching refs:oldValue
181 Object oldValue = null;
195 oldValue = enabled;
202 oldValue = arrayTable.get(key);
211 firePropertyChange(key, oldValue, newValue);
232 boolean oldValue = this.enabled;
234 if (oldValue != newValue) {
237 Boolean.valueOf(oldValue), Boolean.valueOf(newValue));
271 protected void firePropertyChange(String propertyName, Object oldValue, Object newValue) {
273 (oldValue != null && newValue != null && oldValue.equals(newValue))) {
276 changeSupport.firePropertyChange(propertyName, oldValue, newValue);