private JLabel createCaption(String title) {
if (title == null) {
return null;
}
TextStyle captionStyle = getTitleStyle();
JLabel caption = captionStyle.makeLabel(title);
caption.setIcon(titleIcon);
caption.setForeground(getForegroundColor());
caption.setFont(caption.getFont().deriveFont(Font.BOLD));
return caption;
}