Class NotificationEventAdapter
java.lang.Object
ch.swingfx.twinkle.event.NotificationEventAdapter
- All Implemented Interfaces:
INotificationEventListener
An abstract adapter class for receiving notification events.
The methods in this class are empty. This class exists as convenience for creating listener objects.
- See Also:
-
Constructor Summary
Constructors -
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.
-
Constructor Details
-
NotificationEventAdapter
public NotificationEventAdapter()
-
-
Method Details
-
opened
Description copied from interface:INotificationEventListenerCalled if the notification is opened.- Specified by:
openedin interfaceINotificationEventListener- Parameters:
event- Details of the event
-
clicked
Description copied from interface:INotificationEventListenerCalled if somebody clicked on the notification.- Specified by:
clickedin interfaceINotificationEventListener- Parameters:
event- Details of the event
-
mouseOver
Description copied from interface:INotificationEventListenerCalled if the mouse is over the notification.- Specified by:
mouseOverin interfaceINotificationEventListener- Parameters:
event- Details of the event
-
mouseOut
Description copied from interface:INotificationEventListenerCalled if the mouse leaves the notification.- Specified by:
mouseOutin interfaceINotificationEventListener- Parameters:
event- Details of the event
-
closed
Description copied from interface:INotificationEventListenerCalled if the notification is closed.- Specified by:
closedin interfaceINotificationEventListener- Parameters:
event- Details of the event
-