public class MultilineLabel extends UIComponent implements Bindable{
private TextArea textArea;
public MultilineLabel(String label){
HTMLTextAreaModel tam = new HTMLTextAreaModel();
tam.setHtml(label);
textArea = new TextArea(tam);
textArea.setTheme("html");
textArea.setDefaultStyleSheet();
}