Uses of Interface
org.puremvc.java.interfaces.INotification

Packages that use INotification
org.puremvc.java.core.controller   
org.puremvc.java.core.view   
org.puremvc.java.interfaces   
org.puremvc.java.patterns.command   
org.puremvc.java.patterns.facade   
org.puremvc.java.patterns.mediator   
org.puremvc.java.patterns.observer   
 

Uses of INotification in org.puremvc.java.core.controller
 

Methods in org.puremvc.java.core.controller with parameters of type INotification
 void Controller.executeCommand(INotification note)
          If an ICommand has previously been registered to handle a the given INotification, then it is executed.
 

Uses of INotification in org.puremvc.java.core.view
 

Methods in org.puremvc.java.core.view with parameters of type INotification
 void View.notifyObservers(INotification note)
          Notify the Observers for a particular Notification.
 

Uses of INotification in org.puremvc.java.interfaces
 

Methods in org.puremvc.java.interfaces with parameters of type INotification
 void ICommand.execute(INotification notification)
          Execute the ICommand's logic to handle a given INotification.
 void IController.executeCommand(INotification notification)
          Execute the ICommand previously registered as the handler for INotifications with the given notification name.
 void IMediator.handleNotification(INotification notification)
          Handle an INotification.
 void IObserver.notifyObserver(INotification notification)
          Notify the interested object.
 void IView.notifyObservers(INotification note)
          Notify the IObservers for a particular INotification.
 void IFacade.notifyObservers(INotification note)
          Notify Observers of an INotification.
 void IFunction.onNotification(INotification notification)
           
 

Uses of INotification in org.puremvc.java.patterns.command
 

Methods in org.puremvc.java.patterns.command with parameters of type INotification
 void SimpleCommand.execute(INotification notification)
          Fulfill the use-case initiated by the given INotification.
 void MacroCommand.execute(INotification notification)
          Execute this MacroCommand's SubCommands.
 

Uses of INotification in org.puremvc.java.patterns.facade
 

Methods in org.puremvc.java.patterns.facade with parameters of type INotification
 void Facade.notifyObservers(INotification notification)
          Notify Observers.
 

Uses of INotification in org.puremvc.java.patterns.mediator
 

Methods in org.puremvc.java.patterns.mediator with parameters of type INotification
 void Mediator.handleNotification(INotification notification)
          Handle INotifications.
 

Uses of INotification in org.puremvc.java.patterns.observer
 

Classes in org.puremvc.java.patterns.observer that implement INotification
 class Notification
          A base INotification implementation.
 

Methods in org.puremvc.java.patterns.observer with parameters of type INotification
 void Observer.notifyObserver(INotification notification)
          Notify the interested object.
 void Observers.notifyObservers(INotification note)
          Notify all observers of the notification