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

org.bidib.wizard.common.node.PropertyChangeConsumer Maven / Gradle / Ivy

package org.bidib.wizard.common.node;

public interface PropertyChangeConsumer {

    /**
     * Performs this operation on the given arguments.
     * 
     * @param propertyName
     *            the property name
     *
     * @param oldValue
     *            the old value
     * @param newValue
     *            the new value
     */
    void accept(String propertyName, O oldValue, N newValue);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy