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

fitnesse.html.HtmlText Maven / Gradle / Ivy

There is a newer version: 20181217
Show newest version
package fitnesse.html;

public class HtmlText extends HtmlElement {
    private String text;

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

    @Override
    public String html() {
        return HtmlUtil.escapeHTML(text);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy