private Logger logger = Logger.getLogger(this.getClass().getName());
public void init() {
// Get tooltip manager instance
ToolTipManager tooltipManager = ToolTipManager.sharedInstance();
// Set tooltip display after 10 ms
tooltipManager.setInitialDelay(10);
// Never dismiss tooltips
tooltipManager.setDismissDelay(Integer.MAX_VALUE);
// Prepare default fonts
Font defaultFont = new Font("SansSerif", Font.PLAIN, 13);
Font smallFont = new Font("SansSerif", Font.PLAIN, 11);
Font tinyFont = new Font("SansSerif", Font.PLAIN, 10);