Changes between Version 4 and Version 5 of CORE_MVC_BASE


Ignore:
Timestamp:
10/21/08 14:37:28 (16 years ago)
Author:
peko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CORE_MVC_BASE

    v4 v5  
    7171     * begin with '''user'''. 
    7272 
     73= Additional things = 
     74The MVC in Sophie2.0 is divided into two parts: 
     75 * The library part. 
     76 * A concrete implementation. 
     77 
     78== Library Part == 
     79The library part consists of the base classes of the MVC. For the time being we have two base classes of the MVC and these are the Logic and the LogicHelper. Later we should provide more classes that can be part of the Model and the View. Library part is not tightly connected with Sophie2.0 and can be used elsewhere as well. Different tools that we use will also be included in the library part. These include things like Helpers, Monitoring utilities etc. 
     80 * all the things connected with the library part should go in '''/sophie2-platform/modules/org.sophie2.core/src/main/java/org/sophie2/core/mvc/''' 
     81 * define sub-packages if needed. 
     82== Implementation == 
     83The implementation part include the concrete implementation of parts of the MVC: Logic, Model, View. Since all the model and View parts are now typical implementations (TextFrame, PageView etc.) they are NOT part of the core module but rather parts of different modules.