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

org.bklab.flow.factory.H6Factory Maven / Gradle / Ivy

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

import com.vaadin.flow.component.Component;
import com.vaadin.flow.component.html.H6;
import org.bklab.flow.FlowFactory;
import org.bklab.flow.base.ClickNotifierFactory;
import org.bklab.flow.base.HtmlContainerFactory;

public class H6Factory extends FlowFactory
        implements HtmlContainerFactory, ClickNotifierFactory {

    public H6Factory() {
        this(new H6());
    }

    public H6Factory(Component... component) {
        this(new H6(component));
    }

    public H6Factory(String text) {
        this(new H6(text));
    }

    public H6Factory(H6 component) {
        super(component);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy