org.bklab.flow.factory.SpanFactory 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.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