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:
-
Method Summary
Modifier and TypeMethodDescriptionvoidclicked(NotificationEvent event) Called if somebody clicked on the notification.voidclosed(NotificationEvent event) Called if the notification is closed.voidmouseOut(NotificationEvent event) Called if the mouse leaves the notification.voidmouseOver(NotificationEvent event) Called if the mouse is over the notification.voidopened(NotificationEvent event) Called if the notification is opened.
-
Method Details
-
opened
Called if the notification is opened.- Parameters:
event- Details of the event
-
clicked
Called if somebody clicked on the notification.- Parameters:
event- Details of the event
-
mouseOver
Called if the mouse is over the notification.- Parameters:
event- Details of the event
-
mouseOut
Called if the mouse leaves the notification.- Parameters:
event- Details of the event
-
closed
Called if the notification is closed.- Parameters:
event- Details of the event
-