/[classpath]/classpath/javax/swing/ToolTipManager.java
ViewVC logotype

Diff of /classpath/javax/swing/ToolTipManager.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.9 by mark, Sun Nov 14 16:31:20 2004 UTC revision 1.10 by tromey, Tue Apr 26 18:56:19 2005 UTC
# Line 466  public class ToolTipManager extends Mous Line 466  public class ToolTipManager extends Mous
466    /**    /**
467     * This method displays the ToolTip. It can figure out the method needed to     * This method displays the ToolTip. It can figure out the method needed to
468     * show it as well (whether to display it in heavyweight/lightweight panel     * show it as well (whether to display it in heavyweight/lightweight panel
469     * or a window.)     * or a window.)  This is package-private to avoid an accessor method.
470     */     */
471    private void showTip()    void showTip()
472    {    {
473      if (! enabled || currentComponent == null)      if (! enabled || currentComponent == null)
474        return;        return;
# Line 535  public class ToolTipManager extends Mous Line 535  public class ToolTipManager extends Mous
535    
536    /**    /**
537     * This method hides the ToolTip.     * This method hides the ToolTip.
538       * This is package-private to avoid an accessor method.
539     */     */
540    private void hideTip()    void hideTip()
541    {    {
542      if (currentTip == null || ! currentTip.isVisible() || ! enabled)      if (currentTip == null || ! currentTip.isVisible() || ! enabled)
543        return;        return;

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26