Here you can find the source of setTooltipDismissDelay()
public static void setTooltipDismissDelay()
//package com.java2s; //License from project: Open Source License import javax.swing.*; public class Main { public static final int TOOLTIP_DISMISS_DELAY = 7000; public static void setTooltipDismissDelay() { ToolTipManager.sharedInstance().setDismissDelay(TOOLTIP_DISMISS_DELAY); }/*from w w w.jav a2 s . c o m*/ }