com.jniwrapper.win32.shell
Interface BalloonListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
BalloonAdapter

public interface BalloonListener
extends java.util.EventListener

Event listener for watching balloon tooltip messages


Method Summary
 void balloonHide(java.util.EventObject balloonEventObject)
          Fires when the balloon tooltip disappeares 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 disappeares because of timeout.
 void balloonUserClick(java.util.EventObject balloonEventObject)
          Fires when the balloon tooltip disappeares because of user click.
 

Method Detail

balloonShown

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

Parameters:
balloonEventObject - describes source of the event.

balloonHide

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

Parameters:
balloonEventObject - describes source of the event.

balloonTimeOut

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

Parameters:
balloonEventObject - describes source of the event.

balloonUserClick

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

Parameters:
balloonEventObject - describes source of the event.