Changes between Version 3 and Version 4 of UNPLANNED_CORE_MVC_BASE_R0
- Timestamp:
- 10/14/08 13:17:51 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UNPLANNED_CORE_MVC_BASE_R0
v3 v4 39 39 * This is sensible because: 40 40 * We need to have multiple books with pages and frames as well as multiple views to display the model. 41 * 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.41 * We need to control the model by the view. This means that the Controller must only have methods implemented and called. It SHOULD NOT HAVE STATE. That is why singleton pattern will be used to instantiate it and use it. 42 42 * View will be automatically updated on model change. 43 * View will commit data to model on user intervention by the corresponding logic .43 * View will commit data to model on user intervention by the corresponding logic and its methods. 44 44 45 45 = Implementation = 46 The implementation is based upon the requirements. List of the base classes and their class diagrams are added. We don't need rules to implement the MVC since it is relatively simple at this point. Though rules about its usage will be provided.46 The implementation is based upon the requirements. List of the base classes and their class diagrams are added. We don't need complecated rules to implement the MVC since it is relatively simple at this point. Though rules about its usage will be provided. See the following wiki page for details about current MVC. 47 47 48 48 [wiki:MVC_STRUCTURE MVC]