Changes between Version 10 and Version 11 of GROUP_BOOK_MODEL_REDESIGN_R0
- Timestamp:
- 07/24/09 12:25:11 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GROUP_BOOK_MODEL_REDESIGN_R0
v10 v11 63 63 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]: [4478].[[BR]] 64 64 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 settermethods that will access the keys. Here's an example:65 There 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: 66 66 {{{ 67 67 public class BookHelper { … … 77 77 } 78 78 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); 81 81 } 82 83 // TODO Some more helper methods here.84 // They might include modifying the page size, adding a page, etc.85 82 } 86 83 }}} 87 84 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.85 These 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). 89 86 90 87 Here are the tickets of the other redesign tasks that are tightly connected with this one:[[BR]]