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

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy