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

org.bklab.flow.FlowFactory Maven / Gradle / Ivy

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

import com.vaadin.flow.component.Component;

public abstract class FlowFactory> implements IFluentFlowFactory {

    private final C component;

    public FlowFactory(C component) {
        this.component = component;
    }


    public E lumoSmall() {
        get().getElement().setAttribute("theme", "small");
        return thisObject();
    }

    @Override
    public C get() {
        return component;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy