Package org.puremvc.java.multicore.patterns.observer

Examples of org.puremvc.java.multicore.patterns.observer.Notification


   * @param notificationName the name of the notification to send
   * @param body the body of the notification (optional)
   * @param type the type of the notification (optional)
   */
  public void sendNotification(String notificationName, Object body, String type) {
    notifyObservers(new Notification(notificationName, body, type));
  }
View Full Code Here

TOP

Related Classes of org.puremvc.java.multicore.patterns.observer.Notification

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.