setForegroundColor(ColorConstants.tooltipBackground);
setBackgroundColor(ColorConstants.tooltipBackground);
setOpaque(true);
setBorder(TOOLTIP_BORDER);
header = new TextFlow();
header.setForegroundColor(ColorConstants.darkGray);
header.setFont(getBoldFont());
add(header);
description = new TextFlow();
description.setForegroundColor(ColorConstants.darkGray);
add(description);
}