786787788789790791792793794795796
* @see #getTitle() */ public void setTitle(final String text) { if (text != null) { if (this.title == null) { this.setTitle(new TextTitle(text, TextTitle.DEFAULT_FONT)); } else { this.title.setText(text); } } else { this.setTitle((TextTitle) null);