@@ -14,21 +14,21 @@ package org.puremvc.as3.patterns.facade
14
14
*
15
15
* <P >
16
16
* In PureMVC, the <code >Facade</code > class assumes these
17
- * responsibilities:
17
+ * responsibilities:</ P >
18
18
* <UL >
19
19
* <LI >Initializing the <code >Model</code >, <code >View</code >
20
20
* and <code >Controller</code > Singletons.</LI >
21
21
* <LI >Providing all the methods defined by the <code >IModel,
22
- * IView, & IController</code > interfaces.</LI >
22
+ * IView, and IController</code > interfaces.</LI >
23
23
* <LI >Providing the ability to override the specific <code >Model</code >,
24
24
* <code >View</code > and <code >Controller</code > Singletons created.</LI >
25
25
* <LI >Providing a single point of contact to the application for
26
26
* registering <code >Commands</code > and notifying <code >Observers</code ></LI >
27
27
* </UL >
28
28
* <P >
29
- * Example usage:
29
+ * Example usage:</ P >
30
30
* <listing >
31
- * import org.puremvc.as3.patterns.facade.& lowast ; ;
31
+ * import org.puremvc.as3.patterns.facade.Facade ;
32
32
*
33
33
* import com.me.myapp.model.~~;
34
34
* import com.me.myapp.view.~~;
@@ -136,7 +136,7 @@ package org.puremvc.as3.patterns.facade
136
136
* This <code >IFacade</code > implementation is a Singleton,
137
137
* so you should not call the constructor
138
138
* directly, but instead call the static Singleton
139
- * Factory method <code >Facade.getInstance()</code >
139
+ * Factory method <code >Facade.getInstance()</code ></ P >
140
140
*
141
141
* @throws Error Error if Singleton instance has already been constructed
142
142
*
@@ -177,15 +177,14 @@ package org.puremvc.as3.patterns.facade
177
177
* <P >
178
178
* Called by the <code >initializeFacade</code > method.
179
179
* 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 >
181
181
* <UL >
182
182
* <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 >
184
184
* </UL >
185
185
* If you don't want to initialize a different <code >IController</code >,
186
186
* call <code >super.initializeController()</code > at the beginning of your
187
187
* method, then register <code >Command</code >s.
188
- * </P >
189
188
*/
190
189
protected function initializeController ( ):void {
191
190
if ( controller != null ) return ;
@@ -198,11 +197,11 @@ package org.puremvc.as3.patterns.facade
198
197
* <P >
199
198
* Called by the <code >initializeFacade</code > method.
200
199
* 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 >
202
201
* <UL >
203
202
* <LI > You wish to initialize a different <code >IModel</code >.</LI >
204
203
* <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 >
206
205
* </UL >
207
206
* If you don't want to initialize a different <code >IModel</code >,
208
207
* call <code >super.initializeModel()</code > at the beginning of your
@@ -227,7 +226,7 @@ package org.puremvc.as3.patterns.facade
227
226
* <P >
228
227
* Called by the <code >initializeFacade</code > method.
229
228
* 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 >
231
230
* <UL >
232
231
* <LI > You wish to initialize a different <code >IView</code >.</LI >
233
232
* <LI > You have <code >Observers</code > to register with the <code >View</code ></LI >
@@ -377,7 +376,7 @@ package org.puremvc.as3.patterns.facade
377
376
*
378
377
* <P >
379
378
* Keeps us from having to construct new notification
380
- * instances in our implementation code.
379
+ * instances in our implementation code. </ P >
381
380
* @param notificationName the name of the notiification to send
382
381
* @param body the body of the notification (optional)
383
382
* @param type the type of the notification (optional)
@@ -393,7 +392,7 @@ package org.puremvc.as3.patterns.facade
393
392
* This method is left public mostly for backward
394
393
* compatibility, and to allow you to send custom
395
394
* notification classes using the facade.</P >
396
- *<P >
395
+ * <P >
397
396
* Usually you should just call sendNotification
398
397
* and pass the parameters, never having to
399
398
* construct the notification yourself.</P >
0 commit comments