Changes between Version 15 and Version 16 of CORE_MVC_BASE_R0
- Timestamp:
- 10/13/08 15:50:39 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CORE_MVC_BASE_R0
v15 v16 37 37 * This is sensible because: 38 38 * We need to have multiple books with pages and frames as well as multiple views to display the model. 39 * We need to control the model by the view. This means that the Controller must have only functions implemented and called. It SHOULD NOT HAVE STATE. That is why singleton pattern will be used to i mplementit.39 * We need to control the model by the view. This means that the Controller must have only functions implemented and called. It SHOULD NOT HAVE STATE. That is why singleton pattern will be used to instantiate it. 40 40 * View will be automatically updated on model change. 41 41 * View will commit data to model on user intervention by the corresponding logic.