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

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

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

import com.vaadin.flow.component.AttachEvent;
import com.vaadin.flow.component.AttachNotifier;
import com.vaadin.flow.component.Component;
import com.vaadin.flow.component.ComponentEventListener;
import org.bklab.flow.IFlowFactory;

@SuppressWarnings("unchecked")
public interface AttachNotifierFactory> extends IFlowFactory {
    default E addAttachListener(ComponentEventListener listener) {
        get().addAttachListener(listener);
        return (E) this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy