Changes between Version 15 and Version 16 of CORE_MVC_BASE_R0


Ignore:
Timestamp:
10/13/08 15:50:39 (17 years ago)
Author:
peko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CORE_MVC_BASE_R0

    v15 v16  
    3737 * This is sensible because: 
    3838  * 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 implement it. 
     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. 
    4040 * View will be automatically updated on model change. 
    4141 * View will commit data to model on user intervention by the corresponding logic.