All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.reactfx.Change Maven / Gradle / Ivy

There is a newer version: 2.0-M5
Show newest version
package org.reactfx;

/**
 * Represents a change of a value.
 * @param  type of the value that changed.
 */
public class Change {
    private final T oldValue;
    private final T newValue;

    public Change(T oldValue, T newValue) {
        this.oldValue = oldValue;
        this.newValue = newValue;
    }

    public T getOldValue() {
        return oldValue;
    }

    public T getNewValue() {
        return newValue;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy