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

org.bklab.flow.base.CompositionNotifierFactory Maven / Gradle / Ivy

There is a newer version: 22.0.1
Show newest version
package org.bklab.flow.base;

import com.vaadin.flow.component.*;
import org.bklab.flow.IFlowFactory;

@SuppressWarnings("unchecked")
public interface CompositionNotifierFactory> extends IFlowFactory {
    default E compositionEndListener(ComponentEventListener compositionEndListener) {
        get().addCompositionEndListener(compositionEndListener);
        return (E) this;
    }

    default E compositionUpdateListener(ComponentEventListener compositionUpdateListener) {
        get().addCompositionUpdateListener(compositionUpdateListener);
        return (E) this;
    }

    default E compositionStartListener(ComponentEventListener compositionStartListener) {
        get().addCompositionStartListener(compositionStartListener);
        return (E) this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy