diff --git a/asdoc/all-index-N.html b/asdoc/all-index-N.html index 7d5b5b6..bd06ece 100644 --- a/asdoc/all-index-N.html +++ b/asdoc/all-index-N.html @@ -90,6 +90,13 @@ Notify the IObservers for a particular INotification. +notifyObservers(note:org.puremvc.as3.interfaces:INotification) — Method in interface org.puremvc.as3.interfaces.IFacade + + + + Notify the IObservers for a particular INotification. + + notifyObservers(note:org.puremvc.as3.interfaces:INotification) — Method in interface org.puremvc.as3.interfaces.IView diff --git a/asdoc/org/puremvc/as3/interfaces/IFacade.html b/asdoc/org/puremvc/as3/interfaces/IFacade.html index f5d1725..72189f1 100644 --- a/asdoc/org/puremvc/as3/interfaces/IFacade.html +++ b/asdoc/org/puremvc/as3/interfaces/IFacade.html @@ -4,7 +4,7 @@ - + org.puremvc.as3.interfaces.IFacade @@ -119,6 +119,14 @@   
+notifyObservers(note:INotification):void
+
+ Notify the IObservers for a particular INotification.
+IFacade + + +   +
registerCommand(noteName:String, commandClassRef:Class):void
Register an ICommand with the Controller.
@@ -276,6 +284,33 @@ + + + + + +
notifyObservers()method 
+
+public function notifyObservers(note:INotification):void

+ Notify the IObservers for a particular INotification. + +

+ All previously attached IObservers for this INotification's + list are notified and are passed a reference to the INotification in + the order in which they were registered.

+

+ NOTE: Use this method only if you are sending custom Notifications. Otherwise + use the sendNotification method which does not require you to create the + Notification instance.

+ +

Parameters + + + + +
note:INotification — the INotification to notify IObservers of. +
+
diff --git a/version.txt b/version.txt index 2eab4cd..db4ef98 100644 --- a/version.txt +++ b/version.txt @@ -9,7 +9,7 @@ Release Date: 03/17/08 License: Creative Commons Attribution 3.0 United States License -------------------------------------------------------------------------- 2.0.3 Added notifyObservers back to IFacade, where it is required - if you are sending custom Notifications. + if you are sending custom Notifications. No unit tests required. 2.0.2 Refactored View.removeMediator method, moving the logic for removing an observer into a removeObserver method (also on IView), which is now