org.bklab.flow.factory.H2Factory 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.factory;
import com.vaadin.flow.component.Component;
import com.vaadin.flow.component.html.H2;
import org.bklab.flow.FlowFactory;
import org.bklab.flow.base.ClickNotifierFactory;
import org.bklab.flow.base.HtmlContainerFactory;
public class H2Factory extends FlowFactory
implements HtmlContainerFactory, ClickNotifierFactory {
public H2Factory() {
this(new H2());
}
public H2Factory(Component... component) {
this(new H2(component));
}
public H2Factory(String text) {
this(new H2(text));
}
public H2Factory(H2 component) {
super(component);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy