Uses of Class
io.guise.framework.model.Notification
-
Packages that use Notification Package Description io.guise.framework io.guise.framework.component io.guise.framework.event -
-
Uses of Notification in io.guise.framework
Methods in io.guise.framework with parameters of type Notification Modifier and Type Method Description void
AbstractGuiseSession. notify(Notification... notifications)
protected void
AbstractGuiseSession. notify(Notification notification, java.lang.Runnable afterNotify)
Notifies the user of the given notification information, with optional logic to be executed after notification takes place.void
AbstractGuiseSession. notify(java.lang.Runnable afterNotify, Notification... notifications)
Notifies the user of one or more notifications to be presented in sequence, with optional logic to be executed after all notifications have taken place.void
GuiseSession. notify(Notification... notifications)
Notifies the user of one or more notifications to be presented in sequence.void
GuiseSession. notify(java.lang.Runnable afterNotify, Notification... notifications)
Notifies the user of one or more notifications to be presented in sequence, with optional logic to be executed after all notifications have taken place. -
Uses of Notification in io.guise.framework.component
Methods in io.guise.framework.component that return Notification Modifier and Type Method Description Notification
AbstractComponent. getNotification()
Notification
Component. getNotification()
Methods in io.guise.framework.component that return types with arguments of type Notification Modifier and Type Method Description static java.util.List<Notification>
AbstractComponent. getNotifications(Component component)
Retrieves the the notifications of all components in a hierarchy.protected static java.util.List<Notification>
AbstractComponent. getNotifications(Component component, java.util.List<Notification> notifications)
Retrieves the the notifications of all components in a hierarchy.Methods in io.guise.framework.component with parameters of type Notification Modifier and Type Method Description protected void
AbstractComponent. fireNotified(Notification notification)
Fires an event to all registered notification listeners with the new notification information.void
AbstractComponent. notify(Notification notification)
void
Component. notify(Notification notification)
Notifies the user of the given notification information.void
AbstractComponent. setNotification(Notification newNotification)
void
AbstractCompositeStateControl. setNotification(Notification newNotification)
void
AbstractContainerControl. setNotification(Notification newNotification)
void
AbstractControl. setNotification(Notification newNotification)
Sets the component notification.void
AbstractDialogFrame. setNotification(Notification newNotification)
Sets the component notification.void
AbstractLayoutControl. setNotification(Notification newNotification)
void
Component. setNotification(Notification newNotification)
Sets the component notification.void
ImageActionControl. setNotification(Notification newNotification)
Method parameters in io.guise.framework.component with type arguments of type Notification Modifier and Type Method Description protected static java.util.List<Notification>
AbstractComponent. getNotifications(Component component, java.util.List<Notification> notifications)
Retrieves the the notifications of all components in a hierarchy.Constructors in io.guise.framework.component with parameters of type Notification Constructor Description NotificationOptionDialogFrame(Notification notification)
Notification constructor. -
Uses of Notification in io.guise.framework.event
Constructors in io.guise.framework.event with parameters of type Notification Constructor Description NotificationEvent(java.lang.Object source, Notification notification)
Source and notification constructor.NotificationEvent(java.lang.Object source, java.lang.Object target, Notification notification)
Source, target, and notification constructor.
-