Exemplo n.º 1
0
 /**
  * Constructor
  *
  * @param text
  */
 public ChatMessageLabel(String text, boolean ownMessage) {
   super(
       String.format(
           "<html><div align='%s'>%s</div></html>",
           ownMessage ? "right" : "left", Formatter.formatHtml(text)));
   setFont(getFont().deriveFont(10f));
 }