Changes between Version 10 and Version 11 of GROUP_BOOK_MODEL_REDESIGN_R0


Ignore:
Timestamp:
07/24/09 12:25:11 (16 years ago)
Author:
dido
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUP_BOOK_MODEL_REDESIGN_R0

    v10 v11  
    6363There are tests for the static methods of the [source:/browser/branches/private/mira/resourcesRefactoring/modules/org.sophie2.base.model.resources.r4/src/main/java/org/sophie2/base/model/resources/r4/resources/ResourceR4.java ResourceR4 class]: [4478].[[BR]] 
    6464 
    65 There will be helper classes that will serve as a bridge between the new and the old model. They will consist of getter and setter methods that will access the keys. Here's an example: 
     65There will be helper classes that will serve as a bridge between the new and the old model. They will consist of getter methods that will access the keys. Here's an example: 
    6666{{{ 
    6767public class BookHelper { 
     
    7777        } 
    7878         
    79         public void setTitle() { 
    80                 // TODO Use the resource changer to change the resource. 
     79        public ImmSize getPageSize() { 
     80                return this.access.getRaw(BookR4.KEY_PAGE_SIZE); 
    8181        } 
    82  
    83         // TODO Some more helper methods here. 
    84         // They might include modifying the page size, adding a page, etc. 
    8582} 
    8683}}} 
    8784 
    88 Writing these helpers will be part of the task for replacing the model (see below). This is only an idea of how they will look like and it might be changed. 
     85These helpers will not have any setter methods. Instead, AutoActions will be written by programmers where they need to change the model. Helpers like addPage and others will be written as static methods in the views or in separate classes. They will take a ResourceModelChanger only and use it to perform the changes. This is only an idea of how they will look like and it might be changed. Writing these helpers will be part of the task for replacing the model (see below). 
    8986 
    9087Here are the tickets of the other redesign tasks that are tightly connected with this one:[[BR]]