Lines Matching refs:oldValue

64  *         String oldValue = this.value;
66 * this.pcs.firePropertyChange("value", oldValue, newValue);
258 * @param oldValue the old value of the property
261 public void firePropertyChange(String propertyName, Object oldValue, Object newValue) {
262 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) {
263 firePropertyChange(new PropertyChangeEvent(this.source, propertyName, oldValue, newValue));
278 * @param oldValue the old value of the property
281 public void firePropertyChange(String propertyName, int oldValue, int newValue) {
282 if (oldValue != newValue) {
283 firePropertyChange(propertyName, Integer.valueOf(oldValue), Integer.valueOf(newValue));
298 * @param oldValue the old value of the property
301 public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue) {
302 if (oldValue != newValue) {
303 firePropertyChange(propertyName, Boolean.valueOf(oldValue), Boolean.valueOf(newValue));
317 Object oldValue = event.getOldValue();
319 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) {
352 * @param oldValue the old value of the property
356 public void fireIndexedPropertyChange(String propertyName, int index, Object oldValue, Object newValue) {
357 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) {
358 firePropertyChange(new IndexedPropertyChangeEvent(source, propertyName, oldValue, newValue, index));
374 * @param oldValue the old value of the property
378 public void fireIndexedPropertyChange(String propertyName, int index, int oldValue, int newValue) {
379 if (oldValue != newValue) {
380 fireIndexedPropertyChange(propertyName, index, Integer.valueOf(oldValue), Integer.valueOf(newValue));
396 * @param oldValue the old value of the property
400 public void fireIndexedPropertyChange(String propertyName, int index, boolean oldValue, boolean newValue) {
401 if (oldValue != newValue) {
402 fireIndexedPropertyChange(propertyName, index, Boolean.valueOf(oldValue), Boolean.valueOf(newValue));