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

org.bklab.flow.base.HtmlComponentFactory Maven / Gradle / Ivy

There is a newer version: 22.0.1
Show newest version
/*
 * 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