Changes between Version 7 and Version 8 of GROUP_BOOK_MODEL_REDESIGN_R0


Ignore:
Timestamp:
07/23/09 14:59:26 (16 years ago)
Author:
boyan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUP_BOOK_MODEL_REDESIGN_R0

    v7 v8  
    6060= Implementation = 
    6161The class hierarchy has been implemented according to the design. Every class temporarily has an R4 suffix that will be removed when replacing the old model. The changesets are: [4323] [4379] [4407] [4409] [4437] [4438][[BR]] 
    62 There 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]: ''Here goes the changeset for the test''.[[BR]] 
    63 There will be helper classes that will serve as a bridge between the new and the old model. They will consist of auto-properties (in terms of ProLib) that will access the keys. Here's an example: 
     62 
     63There 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]] 
     64 
     65There 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: 
    6466{{{ 
    65 Here goes the example. 
     67public class BookHelper { 
     68 
     69        private ResourceAccess access; 
     70         
     71        public BookHelper(ResourceAccess access) { 
     72                this.access = access; 
     73        } 
     74         
     75        public String getTitle() { 
     76                return this.access.getRaw(BookR4.KEY_TITLE); 
     77        } 
     78         
     79        public void setTitle() { 
     80                // TODO Use the resource changer to change the resource. 
     81        } 
     82} 
    6683}}} 
    6784 
    68 Writing these helpers will be part of the task for refactoring. 
     85Writing these helpers will be part of the task for refactoring. This is only an idea of how they will look like and it might be changed. 
    6986 
    7087Here are the tickets for the tasks that follow this one and will be finished in the next weeks:[[BR]]