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

com.glispa.combo.TextTemplateElement Maven / Gradle / Ivy

The newest version!
package com.glispa.combo;

/**
 * Internal implementation of {@link TemplateElement} for plain text
 */
class TextTemplateElement implements TemplateElement {

    private final String text;

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

    @Override
    public String render(S state) {
        return text;
    }
}