public ExampleIconViewWithText(final Content content, final Text text, final boolean showBounds) {
super(content);
this.text = text;
this.showBounds = showBounds;
icon = new IconGraphic(this, text);
Size size = icon.getSize();
size.extendWidth(text.stringWidth(string));
setMaximumSize(size);
}