42 | | ^(Describe your design here.)^ |
| 42 | The goal of this revision is to make the templating library simplier. For example, in the previous revision it was possible |
| 43 | to have a derived object with local changes, which greatly increased complexity. |
| 44 | Also, instead of having useTemplate() and locked() properties, an enumeration TemplateMode should be introduced, with the following elements: |
| 45 | * USE_TEMPLATE - the value from the template is used |
| 46 | * LOCKED - the own value is used and it cannot be modified |
| 47 | * CUSTOM - the own value is used and it can be modified. |
| 48 | Also, when setting a value to a mutable object, for instance Frame, it should be set to all children recursevly - for example backgroundStyle(), borderStyle(), contentLocation(), etc. |
| 49 | Setting a value to a mutable object, actually does not change its mode in its own TemplateSupport - instead it is only changed in the children. This should insure that there cannot be derived mutable objects. |
| 50 | |
| 51 | A new interface Templatable should be added, which contains the templateSupport() property. All classes need template support should implement this interface. |
| 52 | |
| 53 | Class TemplateField should be rafactored in a way that the TemplateMode enumeration is used. |
| 54 | |
| 55 | Class TemplateValueField should be refactored in the following way: |
| 56 | * value() should always return ownValue() if the object is a mutable |
| 57 | * derivedValue() should only return immutables |
| 58 | |
| 59 | Class TemplateListField should be refactored in a way that either the ownList or derivedList is returned, depending on the mode. |
| 60 | |
| 61 | Class TemplateSupport should be rafactored in a way that the TemplateMode enumeration is used. |
| 62 | |
| 63 | Updated UML class diagram: |
| 64 | |
| 65 | [[Image(source:branches/private/jani/sophie2-platform/doc/uml-design-diagrams/TemplateR1ClassDiagram.png)]] |
| 66 | |
| 67 | Unit test: [source:/trunk/sophie2-platform/modules/org.sophie2.base.model.book/src/test/java/org/sophie2/base/model/book/template/TemplateTest.java TemplateTest] |
| 68 | |
| 69 | Integration test: [source:/branches/private/jani/sophie2-platform/modules/org.sophie2.base.model.book/src/test/java/org/sophie2/base/model/book/template/TemplateIntegrationTest.java TemplateIntegrationTest] |
| 70 | |
| 71 | Demo: [source:/branches/private/jani/sophie2-platform/modules/org.sophie2.base.model.book/src/test/java/org/sophie2/base/model/book/template/TemplateDemo.java TemplateDemo] |