41 | | |
42 | | A new interface Templatable should be added, which contains the templateSupport() property. All classes need template support should implement this interface. |
| 41 | Here 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 |
| 46 | Here 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. |
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. |
| 52 | The 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. |