jdk/src/share/classes/javax/swing/ToolTipManager.java
changeset 21278 ef8a3a2a72f2
parent 13989 0927753651cf
child 23010 6dadb192ad81
equal deleted inserted replaced
21277:bd380b80f9ea 21278:ef8a3a2a72f2
    35  * ToolTipManager contains numerous properties for configuring how long it
    35  * ToolTipManager contains numerous properties for configuring how long it
    36  * will take for the tooltips to become visible, and how long till they
    36  * will take for the tooltips to become visible, and how long till they
    37  * hide. Consider a component that has a different tooltip based on where
    37  * hide. Consider a component that has a different tooltip based on where
    38  * the mouse is, such as JTree. When the mouse moves into the JTree and
    38  * the mouse is, such as JTree. When the mouse moves into the JTree and
    39  * over a region that has a valid tooltip, the tooltip will become
    39  * over a region that has a valid tooltip, the tooltip will become
    40  * visibile after <code>initialDelay</code> milliseconds. After
    40  * visible after <code>initialDelay</code> milliseconds. After
    41  * <code>dismissDelay</code> milliseconds the tooltip will be hidden. If
    41  * <code>dismissDelay</code> milliseconds the tooltip will be hidden. If
    42  * the mouse is over a region that has a valid tooltip, and the tooltip
    42  * the mouse is over a region that has a valid tooltip, and the tooltip
    43  * is currently visible, when the mouse moves to a region that doesn't have
    43  * is currently visible, when the mouse moves to a region that doesn't have
    44  * a valid tooltip the tooltip will be hidden. If the mouse then moves back
    44  * a valid tooltip the tooltip will be hidden. If the mouse then moves back
    45  * into a region that has a valid tooltip within <code>reshowDelay</code>
    45  * into a region that has a valid tooltip within <code>reshowDelay</code>