Uses of Class
net.java.balloontip.BalloonTip

Packages that use BalloonTip
net.java.balloontip   
net.java.balloontip.positioners   
net.java.balloontip.utils   
 

Uses of BalloonTip in net.java.balloontip
 

Subclasses of BalloonTip in net.java.balloontip
 class CustomBalloonTip
          Provides the same functionality as a BalloonTip, but you can add a certain offset to its position (, which can come in handy if attached to custom components)
 class TablecellBalloonTip
          Provides similar functionality as a CustomBalloonTip, but attaches itself to a cell in a JTable
 

Uses of BalloonTip in net.java.balloontip.positioners
 

Fields in net.java.balloontip.positioners declared as BalloonTip
protected  BalloonTip BalloonTipPositioner.balloonTip
           
 

Methods in net.java.balloontip.positioners that return BalloonTip
 BalloonTip BalloonTipPositioner.getBalloonTip()
          Retrieve the balloon tip that uses this positioner
 

Methods in net.java.balloontip.positioners with parameters of type BalloonTip
 void BalloonTipPositioner.setBalloonTip(BalloonTip balloonTip)
          This method is meant only to be used by BalloonTip!
 

Uses of BalloonTip in net.java.balloontip.utils
 

Methods in net.java.balloontip.utils with parameters of type BalloonTip
static void ToolTipUtils.balloonToToolTip(BalloonTip bT, int initialDelay, int showDelay)
          Turns a balloon tip into a tooltip This is done by adding a mouse listener to the attached component.
static void FadingUtils.fadeInBalloon(BalloonTip balloon, java.awt.event.ActionListener onStop, int time, int refreshRate)
          Execute a fade-in effect on a balloon tip
static void FadingUtils.fadeOutBalloon(BalloonTip balloon, java.awt.event.ActionListener onStop, int time, int refreshRate)
          Execute a fade-in effect on a balloon tip
static void TimingUtils.showTimedBalloon(BalloonTip balloon, int time)
          Displays a balloon tip for a certain time, then close it.
static void TimingUtils.showTimedBalloon(BalloonTip balloon, int time, java.awt.event.ActionListener onTimeout)
          Displays a balloon tip for a certain time
static void ToolTipUtils.toolTipToBalloon(BalloonTip bT)
          Turns a balloon tooltip back into a regular balloon tip
 



http://balloontip.java.net/