com.jniwrapper.win32.shell
Class BalloonAdapter

java.lang.Object
  extended by com.jniwrapper.win32.shell.BalloonAdapter
All Implemented Interfaces:
BalloonListener, java.util.EventListener

public abstract class BalloonAdapter
extends java.lang.Object
implements BalloonListener

Event adapter for watching balloon tooltip messages.


Constructor Summary
BalloonAdapter()
           
 
Method Summary
 void balloonHide(java.util.EventObject balloonEventObject)
          Fires when the balloon tooltip disappears not because of timeout or user click.
 void balloonShown(java.util.EventObject balloonEventObject)
          Fires when the balloon tooltip is shown.
 void balloonTimeOut(java.util.EventObject balloonEventObject)
          Fires when the balloon tooltip disappears because of timeout.
 void balloonUserClick(java.util.EventObject balloonEventObject)
          Fires when the balloon tooltip disappears because of user click.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BalloonAdapter

public BalloonAdapter()
Method Detail

balloonShown

public void balloonShown(java.util.EventObject balloonEventObject)
Fires when the balloon tooltip is shown.

Specified by:
balloonShown in interface BalloonListener
Parameters:
balloonEventObject - describes source of the event.

balloonHide

public void balloonHide(java.util.EventObject balloonEventObject)
Fires when the balloon tooltip disappears not because of timeout or user click.

Specified by:
balloonHide in interface BalloonListener
Parameters:
balloonEventObject - describes source of the event.

balloonTimeOut

public void balloonTimeOut(java.util.EventObject balloonEventObject)
Fires when the balloon tooltip disappears because of timeout.

Specified by:
balloonTimeOut in interface BalloonListener
Parameters:
balloonEventObject - describes source of the event.

balloonUserClick

public void balloonUserClick(java.util.EventObject balloonEventObject)
Fires when the balloon tooltip disappears because of user click.

Specified by:
balloonUserClick in interface BalloonListener
Parameters:
balloonEventObject - describes source of the event.