PureMVC JavaScript MultiCore Framework
+PureMVC JavaScript MultiCore Framework
PureMVC is a lightweight framework for creating applications based upon the classic Model-View-Controller design meta-pattern. It supports modular programming through the use of Multiton Core actors instead of the Singletons.
Platforms / Technologies
@@ -95,7 +95,7 @@License
diff --git a/pages/docs/JS/es/patterns_command_MacroCommand.js.html b/pages/docs/JS/es/patterns_command_MacroCommand.js.html index 79d0d28..6bb8cc1 100644 --- a/pages/docs/JS/es/patterns_command_MacroCommand.js.html +++ b/pages/docs/JS/es/patterns_command_MacroCommand.js.html @@ -162,7 +162,7 @@
patterns/command/MacroCommand.js
diff --git a/pages/docs/JS/es/patterns_command_SimpleCommand.js.html b/pages/docs/JS/es/patterns_command_SimpleCommand.js.html index e18f41d..23d3434 100644 --- a/pages/docs/JS/es/patterns_command_SimpleCommand.js.html +++ b/pages/docs/JS/es/patterns_command_SimpleCommand.js.html @@ -71,7 +71,7 @@
patterns/command/SimpleCommand.js
* Fulfill the use-case initiated by the given `Notification`. * * <P>In the Command Pattern, an application use-case typically - * begins with some user action, which results in an `Notification` being broadcast, which + * begins with some user action, which results in a `Notification` being broadcast, which * is handled by business logic in the `execute` method of an * `Command`.</P> * @@ -95,7 +95,7 @@patterns/command/SimpleCommand.js
diff --git a/pages/docs/JS/es/patterns_facade_Facade.js.html b/pages/docs/JS/es/patterns_facade_Facade.js.html index 07e548b..c93f615 100644 --- a/pages/docs/JS/es/patterns_facade_Facade.js.html +++ b/pages/docs/JS/es/patterns_facade_Facade.js.html @@ -190,7 +190,7 @@
patterns/facade/Facade.js
} /** - * Register an `Command` with the `Controller` by Notification name. + * Register a `Command` with the `Controller` by Notification name. * * @param {string} notificationName the name of the `Notification` to associate the `Command` with * @param {function():SimpleCommand} factory a reference to the factory of the `Command` @@ -219,7 +219,7 @@patterns/facade/Facade.js
} /** - * Register an `Proxy` with the `Model` by name. + * Register a `Proxy` with the `Model` by name. * * @param {Proxy} proxy the `Proxy` instance to be registered with the `Model`. */ @@ -228,7 +228,7 @@patterns/facade/Facade.js
} /** - * Remove an `Proxy` from the `Model` by name. + * Remove a `Proxy` from the `Model` by name. * * @param {string} proxyName the `Proxy` to remove from the `Model`. * @returns {Proxy} the `Proxy` that was removed from the `Model` @@ -248,7 +248,7 @@patterns/facade/Facade.js
} /** - * Retrieve an `Proxy` from the `Model` by name. + * Retrieve a `Proxy` from the `Model` by name. * * @param {string} proxyName the name of the proxy to be retrieved. * @returns {Proxy} the `Proxy` instance previously registered with the given `proxyName`. @@ -267,7 +267,7 @@patterns/facade/Facade.js
} /** - * Remove an `Mediator` from the `View`. + * Remove a `Mediator` from the `View`. * * @param {string} mediatorName name of the `Mediator` to be removed. * @returns {Mediator} the `Mediator` that was removed from the `View` @@ -280,14 +280,14 @@patterns/facade/Facade.js
* Check if a Mediator is registered or not * * @param {string} mediatorName - * @returns {Mediator} whether a Mediator is registered with the given `mediatorName`. + * @returns {boolean} whether a Mediator is registered with the given `mediatorName`. */ hasMediator(mediatorName) { return this.view.hasMediator(mediatorName); } /** - * Retrieve an `Mediator` from the `View`. + * Retrieve a `Mediator` from the `View`. * * @param {string} mediatorName * @returns {Mediator} the `Mediator` previously registered with the given `mediatorName`. @@ -302,7 +302,7 @@patterns/facade/Facade.js
* <P>Keeps us from having to construct new notification * instances in our implementation code.</P> * - * @param {string} notificationName the name of the notiification to send + * @param {string} notificationName the name of the notification to send * @param {Object} [body] body the body of the notification (optional) * @param {string} [type] type the type of the notification (optional) */ @@ -388,7 +388,7 @@patterns/facade/Facade.js
diff --git a/pages/docs/JS/es/patterns_mediator_Mediator.js.html b/pages/docs/JS/es/patterns_mediator_Mediator.js.html index 47a41d0..9750124 100644 --- a/pages/docs/JS/es/patterns_mediator_Mediator.js.html +++ b/pages/docs/JS/es/patterns_mediator_Mediator.js.html @@ -166,7 +166,7 @@
patterns/mediator/Mediator.js
diff --git a/pages/docs/JS/es/patterns_observer_Notification.js.html b/pages/docs/JS/es/patterns_observer_Notification.js.html index e3d59b0..9675e62 100644 --- a/pages/docs/JS/es/patterns_observer_Notification.js.html +++ b/pages/docs/JS/es/patterns_observer_Notification.js.html @@ -165,7 +165,7 @@
patterns/observer/Notification.js
diff --git a/pages/docs/JS/es/patterns_observer_Notifier.js.html b/pages/docs/JS/es/patterns_observer_Notifier.js.html index f5d17e9..6e84bed 100644 --- a/pages/docs/JS/es/patterns_observer_Notifier.js.html +++ b/pages/docs/JS/es/patterns_observer_Notifier.js.html @@ -59,7 +59,7 @@
patterns/observer/Notifier.js
* `sendNotification` that relieves implementation code of * the necessity to actually construct `Notifications`.</P> * - * <P>The `Notifier` class, which all of the above mentioned classes + * <P>The `Notifier` class, which all the above-mentioned classes * extend, provides an initialized reference to the `Facade` * Multiton, which is required for the convenience method * for sending `Notifications`, but also eases implementation as these @@ -157,7 +157,7 @@patterns/observer/Notifier.js
diff --git a/pages/docs/JS/es/patterns_observer_Observer.js.html b/pages/docs/JS/es/patterns_observer_Observer.js.html index 9810220..ef38400 100644 --- a/pages/docs/JS/es/patterns_observer_Observer.js.html +++ b/pages/docs/JS/es/patterns_observer_Observer.js.html @@ -152,7 +152,7 @@
patterns/observer/Observer.js
diff --git a/pages/docs/JS/es/patterns_proxy_Proxy.js.html b/pages/docs/JS/es/patterns_proxy_Proxy.js.html index d82f467..e14b232 100644 --- a/pages/docs/JS/es/patterns_proxy_Proxy.js.html +++ b/pages/docs/JS/es/patterns_proxy_Proxy.js.html @@ -143,7 +143,7 @@