// (child widget FORMAT: [{msg level img}]{ul html list of msg texts})
mlp = new HorizontalPanel();
mlp.addStyleName(MsgStyles.css().msg());
mlp.addStyleName(MsgStyles.getMsgLevelStyle(level));
mlp.getElement().setPropertyInt(ELEM_PROP_MSG_LEVEL, level.ordinal());
mlp.add(new HtmlListPanel(false));
container.add(mlp);
return mlp;
}