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);
}