com.github.uuidcode.builder.html.Text Maven / Gradle / Ivy
package com.github.uuidcode.builder.html;
import java.util.Arrays;
import java.util.List;
public class Text extends Node {
private String text;
public Text setText(String text) {
this.text = text;
return this;
}
public static Text of(String text) {
return new Text().setText(text);
}
public List contentList() {
return Arrays.asList(this.text);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy