org.bklab.flow.base.DetachNotifierFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-vaadin-flow Show documentation
Show all versions of fluent-vaadin-flow Show documentation
Broderick Labs for fluent vaadin flow. Inherits common Vaadin components.
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