fitnesse.html.HtmlText Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
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);
}
}