arez.spy.PropertyMutator Maven / Gradle / Ivy
package arez.spy;
/**
* Changing the value of an ObservableValue.
*
* @param The type of the ObservableValue value.
*/
@FunctionalInterface
public interface PropertyMutator
{
/**
* Change the value of an ObservableValue to specified value.
*
* @param value the value of an ObservableValue.
* @throws Throwable if unable to set value.
*/
void set( T value )
throws Throwable;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy