![JAR search and dependency download from the Maven repository](/logo.png)
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy