org.bklab.flow.base.HasItemComponentsFactory 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.Component;
import com.vaadin.flow.data.binder.HasItemComponents;
import org.bklab.flow.IFluentFlowFactory;
public interface HasItemComponentsFactory, E extends HasItemComponentsFactory>
extends HasComponentsFactory, IFluentFlowFactory {
default E addComponents(T afterItem, Component... components) {
get().addComponents(afterItem, components);
return thisObject();
}
default E prependComponents(T beforeItem, Component... components) {
get().prependComponents(beforeItem, components);
return thisObject();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy