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

arez.spy.PropertyMutator Maven / Gradle / Ivy

There is a newer version: 0.213
Show newest version
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