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

com.vaadin.base.devserver.themeeditor.messages.LoadPreviewResponse Maven / Gradle / Ivy

There is a newer version: 24.6.0
Show newest version
package com.vaadin.base.devserver.themeeditor.messages;

public class LoadPreviewResponse extends BaseResponse {
    private String css;

    public LoadPreviewResponse(String css) {
        this.css = css;
    }

    public String getCss() {
        return css;
    }

    public void setCss(String css) {
        this.css = css;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy