View Javadoc
1   package pl.matsuo.core.web.view;
2   
3   public class HtmlText extends HtmlPart {
4   
5   
6     protected String text;
7   
8   
9     public HtmlText(String text) {
10      this.text = text;
11    }
12  
13  
14    @Override
15    public String toString() {
16      return text;
17    }
18  }