de.saxsys.mvvmfx.utils.mapping.accessorfunctions.DoubleSetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mvvmfx Show documentation
Show all versions of mvvmfx Show documentation
This module is the core implementation of the framework
package de.saxsys.mvvmfx.utils.mapping.accessorfunctions;
import java.util.function.BiConsumer;
/**
* A functional interface to define a setter method of type {@link Double}.
*
* @param
* the generic type of the model.
*/
@FunctionalInterface
public interface DoubleSetter extends BiConsumer {
/**
* @param model
* the model instance.
* @param value
* the new value to be set.
*/
@Override
void accept(M model, Double value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy