el = module.getHeader().el();
}
if (text != null) {
layoutContainer.setLayout(new CenterLayout());
HtmlContainer box = new HtmlContainer(text);
box.addStyleName("x-view-item");
box.setStyleAttribute("background-color", "white");
box.setStyleAttribute("color", textColor);
box.setStyleAttribute("font-weight", "bold");
box.setStyleAttribute("text-align", "center");
box.setWidth(250);
box.setStyleAttribute("white-space", "normal");
layoutContainer.add(box);
}
if (!images.isEmpty()) {
layoutContainer.setLayout(new HBoxLayout());
for (AbstractImagePrototype image : images) {