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

org.bklab.flow.factory.SpanFactory 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.Span;
import org.bklab.flow.FlowFactory;
import org.bklab.flow.base.ClickNotifierFactory;
import org.bklab.flow.base.HtmlContainerFactory;

public class SpanFactory extends FlowFactory implements
        HtmlContainerFactory, ClickNotifierFactory {

    public SpanFactory() {
        this(new Span());
    }

    public SpanFactory(Component... component) {
        this(new Span(component));
    }

    public SpanFactory(String text) {
        this(new Span(text));
    }

    public SpanFactory(Span component) {
        super(component);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy