org.bklab.flow.base.HtmlComponentFactory 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.
/*
* Copyright (c) 2008 - 2020. - Broderick Labs.
* Author: Broderick Johansson
* E-mail: [email protected]
* Modify date:2020-06-24 16:33:55
* _____________________________
* Project name: fluent-vaadin-flow
* Class name:org.bklab.flow.base.HtmlComponentFactory
* Copyright (c) 2008 - 2020. - Broderick Labs.
*/
package org.bklab.flow.base;
import com.vaadin.flow.component.HtmlComponent;
import org.bklab.flow.IFlowFactory;
@SuppressWarnings("unchecked")
public interface HtmlComponentFactory>
extends IFlowFactory, HasSizeFactory, HasStyleFactory {
default E title(String title) {
get().setTitle(title);
return (E) this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy