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

de.saxsys.mvvmfx.utils.mapping.accessorfunctions.StringPropertyAccessor Maven / Gradle / Ivy

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