de.saxsys.mvvmfx.utils.mapping.accessorfunctions.StringPropertyAccessor 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 javafx.beans.property.Property;
import java.util.function.Function;
/**
* A functional interface to define an accessor method for a property of type {@link String}.
*
* @param
* the generic type of the model.
*/
@FunctionalInterface
public interface StringPropertyAccessor extends Function> {
/**
* @param model
* the model instance.
* @return the property field of the model.
*/
@Override
Property apply(M model);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy