Package ch.swingfx.twinkle.event
Interface INotificationEventListener
-
- All Known Implementing Classes:
NotificationEventAdapter
public interface INotificationEventListener
Implement this listener if you want to listen for events from the notification.- See Also:
NotificationEventAdapter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clicked(NotificationEvent event)
Called if somebody clicked on the notification.void
closed(NotificationEvent event)
Called if the notification is closed.void
mouseOut(NotificationEvent event)
Called if the mouse leaves the notification.void
mouseOver(NotificationEvent event)
Called if the mouse is over the notification.void
opened(NotificationEvent event)
Called if the notification is opened.
-
-
-
Method Detail
-
opened
void opened(NotificationEvent event)
Called if the notification is opened.- Parameters:
event
- Details of the event
-
clicked
void clicked(NotificationEvent event)
Called if somebody clicked on the notification.- Parameters:
event
- Details of the event
-
mouseOver
void mouseOver(NotificationEvent event)
Called if the mouse is over the notification.- Parameters:
event
- Details of the event
-
mouseOut
void mouseOut(NotificationEvent event)
Called if the mouse leaves the notification.- Parameters:
event
- Details of the event
-
closed
void closed(NotificationEvent event)
Called if the notification is closed.- Parameters:
event
- Details of the event
-
-