@@ -14,21 +14,21 @@ package org.puremvc.as3.patterns.facade
1414 *
1515 * <P >
1616 * In PureMVC, the <code >Facade</code > class assumes these
17- * responsibilities:
17+ * responsibilities:</ P >
1818 * <UL >
1919 * <LI >Initializing the <code >Model</code >, <code >View</code >
2020 * and <code >Controller</code > Singletons.</LI >
2121 * <LI >Providing all the methods defined by the <code >IModel,
22- * IView, & IController</code > interfaces.</LI >
22+ * IView, and IController</code > interfaces.</LI >
2323 * <LI >Providing the ability to override the specific <code >Model</code >,
2424 * <code >View</code > and <code >Controller</code > Singletons created.</LI >
2525 * <LI >Providing a single point of contact to the application for
2626 * registering <code >Commands</code > and notifying <code >Observers</code ></LI >
2727 * </UL >
2828 * <P >
29- * Example usage:
29+ * Example usage:</ P >
3030 * <listing >
31- * import org.puremvc.as3.patterns.facade.& lowast ; ;
31+ * import org.puremvc.as3.patterns.facade.Facade ;
3232 *
3333 * import com.me.myapp.model.~~;
3434 * import com.me.myapp.view.~~;
@@ -136,7 +136,7 @@ package org.puremvc.as3.patterns.facade
136136 * This <code >IFacade</code > implementation is a Singleton,
137137 * so you should not call the constructor
138138 * directly, but instead call the static Singleton
139- * Factory method <code >Facade.getInstance()</code >
139+ * Factory method <code >Facade.getInstance()</code ></ P >
140140 *
141141 * @throws Error Error if Singleton instance has already been constructed
142142 *
@@ -177,15 +177,14 @@ package org.puremvc.as3.patterns.facade
177177 * <P >
178178 * Called by the <code >initializeFacade</code > method.
179179 * Override this method in your subclass of <code >Facade</code >
180- * if one or both of the following are true:
180+ * if one or both of the following are true:</ P >
181181 * <UL >
182182 * <LI > You wish to initialize a different <code >IController</code >.</LI >
183- * <LI > You have <code >Commands</code > to register with the <code >Controller</code > at startup.</ code >. </LI >
183+ * <LI > You have <code >Commands</code > to register with the <code >Controller</code > at startup. </LI >
184184 * </UL >
185185 * If you don't want to initialize a different <code >IController</code >,
186186 * call <code >super.initializeController()</code > at the beginning of your
187187 * method, then register <code >Command</code >s.
188- * </P >
189188 */
190189 protected function initializeController ( ):void {
191190 if ( controller != null ) return ;
@@ -198,11 +197,11 @@ package org.puremvc.as3.patterns.facade
198197 * <P >
199198 * Called by the <code >initializeFacade</code > method.
200199 * Override this method in your subclass of <code >Facade</code >
201- * if one or both of the following are true:
200+ * if one or both of the following are true: </ P >
202201 * <UL >
203202 * <LI > You wish to initialize a different <code >IModel</code >.</LI >
204203 * <LI > You have <code >Proxy</code >s to register with the Model that do not
205- * retrieve a reference to the Facade at construction time.</code ></ LI >
204+ * retrieve a reference to the Facade at construction time.</LI >
206205 * </UL >
207206 * If you don't want to initialize a different <code >IModel</code >,
208207 * call <code >super.initializeModel()</code > at the beginning of your
@@ -227,7 +226,7 @@ package org.puremvc.as3.patterns.facade
227226 * <P >
228227 * Called by the <code >initializeFacade</code > method.
229228 * Override this method in your subclass of <code >Facade</code >
230- * if one or both of the following are true:
229+ * if one or both of the following are true:</ P >
231230 * <UL >
232231 * <LI > You wish to initialize a different <code >IView</code >.</LI >
233232 * <LI > You have <code >Observers</code > to register with the <code >View</code ></LI >
@@ -377,7 +376,7 @@ package org.puremvc.as3.patterns.facade
377376 *
378377 * <P >
379378 * Keeps us from having to construct new notification
380- * instances in our implementation code.
379+ * instances in our implementation code. </ P >
381380 * @param notificationName the name of the notiification to send
382381 * @param body the body of the notification (optional)
383382 * @param type the type of the notification (optional)
@@ -393,7 +392,7 @@ package org.puremvc.as3.patterns.facade
393392 * This method is left public mostly for backward
394393 * compatibility, and to allow you to send custom
395394 * notification classes using the facade.</P >
396- *<P >
395+ * <P >
397396 * Usually you should just call sendNotification
398397 * and pass the parameters, never having to
399398 * construct the notification yourself.</P >
0 commit comments