io.github.ableron.Content Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ableron Show documentation
Show all versions of ableron Show documentation
Library for performing server side dynamic UI composition.
package io.github.ableron;
public class Content {
private String content;
public Content(String content) {
this.content = content;
}
public static Content of(String content) {
return new Content(content);
}
public String get() {
return content;
}
public synchronized void replace(String text, String replacement) {
this.content = content.replace(text, replacement);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy