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

pl.fhframework.binding.IActionCallback Maven / Gradle / Ivy

package pl.fhframework.binding;

/**
 * Callback called on a form component event. Executes logic directly passed by a programmer.
 * Used instead of a standard and encouraged actions declared in FRM files and implemented as methods in use cases.
 */
@FunctionalInterface
public interface IActionCallback {

    /**
     * Logic to be executed on a form component event.
     */
    public void action();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy