Changes between Version 4 and Version 5 of GROUP_TEMPLATES_R1


Ignore:
Timestamp:
05/21/09 17:24:53 (16 years ago)
Author:
jani
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUP_TEMPLATES_R1

    v4 v5  
    3131 
    3232= Design = 
    33 The goal of this revision is to make the templating library simplier. For example, in the previous revision it was possible  
    34 to have a derived object with local changes, which greatly increased complexity.  
    35 Also, instead of having useTemplate() and locked() properties, an enumeration TemplateMode should be introduced, with the following elements: 
     33 
     34Instead of having useTemplate() and locked() properties, an enumeration TemplateMode should be introduced, with the following elements: 
    3635 * USE_TEMPLATE - the value from the template is used 
    3736 * LOCKED - the own value is used and it cannot be modified 
    3837 * CUSTOM - the own value is used and it can be modified. 
    39 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. 
     38 
     39When setting a value to a mutable object, for instance Frame, it should be set to all children recursevly - for example backgroundStyle(), borderStyle(), contentLocation(), etc. 
    4040Setting 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. 
    41   
    42 A new interface Templatable should be added, which contains the templateSupport() property. All classes need template support should implement this interface. 
     41Here is an example of setting a mode: 
     42 * {{{frame.templateSupport().get().mode().set(TemplateMode.LOCKED);}}} - this will set all properties of the frame to be in locked mode. Those include all properties of the border style, background style, shadow style, and also, the content location, content size, etc. 
     43 * {{{frame.backgroundStyle().get().templateSupport().get().mode().set(TemplateMode.LOCKED);}}} - this will lock all the properties of the backgroundStyle. 
     44 * {{{frame.templateSupport().get().setMode(frame.backgroundStyle(), TemplateMode.LOCKED);}}} - this does the same as above. 
     45 * {{{frame.templateSupport().get().setMode(frame.contentLocation(), TemplateMode.LOCKED);}}} - this will lock only the location 
     46Here is an example of getting a mode: 
     47 * {{{frame.templateSupport().get().getMode(frame.contentLocation());}}} - gets the mode of the location 
     48 * {{{frame.templateSupport().get().getMode(frame.backgroundStyle());}}} - get the mode of the background style. If all properties of the background style are USE_TEMPLATE (for example), then USE_TEMPLATE is returned. CUSTOM is returned otherwise. 
     49 * {{{frame.backgroundStyle().get().templateSupport().get().mode().get();}}} - some as the above. 
     50 * {{{frame.templateSupport().get().mode().get}}} - will return USE_TEMPLATE if the whole frame uses the template, LOCKED if the whole frame is locked, and CUSTOM otherwise. 
    4351 
    44 Class TemplateField should be rafactored in a way that the TemplateMode enumeration is used. 
    45  
    46 Class TemplateValueField should be refactored in the following way: 
    47  * value() should always return ownValue() if the object is a mutable 
    48  * derivedValue() should only return immutables 
    49   
    50 Class TemplateListField should be refactored in a way that either the ownList or derivedList is returned, depending on the mode. 
    51  
    52 Class TemplateSupport should be rafactored in a way that the TemplateMode enumeration is used. 
     52The following changes should be considered:  
     53 * A new interface Templatable should be added, which contains the templateSupport() property. All classes need template support should implement this interface. 
     54 * Class TemplateField should be rafactored in a way that the TemplateMode enumeration is used. 
     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 * Class TemplateListField should be refactored in a way that either the ownList or derivedList is returned, depending on the mode. 
     59 * Class TemplateSupport should be rafactored in a way that the TemplateMode enumeration is used. 
    5360 
    5461Updated UML class diagram: