Changes between Version 2 and Version 3 of GROUP_TEMPLATES_R1


Ignore:
Timestamp:
05/21/09 12:11:15 (16 years ago)
Author:
jani
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUP_TEMPLATES_R1

    v2 v3  
    4040 * Create another page and apply the newly created template to it. 
    4141= Design = 
    42 ^(Describe your design here.)^ 
     42The goal of this revision is to make the templating library simplier. For example, in the previous revision it was possible  
     43to have a derived object with local changes, which greatly increased complexity.  
     44Also, 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. 
     48Also, 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. 
     49Setting 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  
     51A new interface Templatable should be added, which contains the templateSupport() property. All classes need template support should implement this interface. 
     52 
     53Class TemplateField should be rafactored in a way that the TemplateMode enumeration is used. 
     54 
     55Class 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  
     59Class TemplateListField should be refactored in a way that either the ownList or derivedList is returned, depending on the mode. 
     60 
     61Class TemplateSupport should be rafactored in a way that the TemplateMode enumeration is used. 
     62 
     63Updated UML class diagram: 
     64 
     65[[Image(source:branches/private/jani/sophie2-platform/doc/uml-design-diagrams/TemplateR1ClassDiagram.png)]] 
     66 
     67Unit test: [source:/trunk/sophie2-platform/modules/org.sophie2.base.model.book/src/test/java/org/sophie2/base/model/book/template/TemplateTest.java TemplateTest] 
     68 
     69Integration 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 
     71Demo: [source:/branches/private/jani/sophie2-platform/modules/org.sophie2.base.model.book/src/test/java/org/sophie2/base/model/book/template/TemplateDemo.java TemplateDemo] 
    4372 
    4473= Implementation =