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

com.github.uuidcode.builder.html.Text Maven / Gradle / Ivy

There is a newer version: 0.0.64
Show newest version
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