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

org.yamcs.templating.TextStatement Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.templating;

import java.util.Map;

public class TextStatement implements Statement {

    private String text;

    public TextStatement(String text) {
        this.text = text;
    }

    @Override
    public void render(StringBuilder buf, Map vars, Map filters) {
        buf.append(text);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy