| 29 | * Create ImmGradientPersister class, responsible for the persistence of the gradient. |
| 30 | * In ImmGradient there are two attributes without persisters for them - GradientType and CycleMethodEnum - create classes to persist them too. |
| 31 | * About GradientTypePersister class - write the gradient type as string in the storage. Change the enum GradientType in ImmGradient class in order to provide method to choose the correct enum member by given string. Provide attribute "stringRepresentation" in the enum and make every member to have a string representation for iself. later this string will be written to the sorage on save and the correct member will be chosen on load. |
| 32 | * About CycleMethodEnumPersister class - The class MultipleGradientPaint has a fixed number of constants of its inner class CycleMethodEnum. So each of this constants can be written as string too, analogous to GradientTypePersister. On load the correcr constant will be chosen. The class CycleMethodEnum is not made to be instatiated and no instances should be created except for the three predefined - NO_CYCLE, REFLECT and REPEAT. |
| 33 | * Create extensions for the new persisters in BasePersistenceModule class. |
| 34 | * Add code for save/load of the gradient in BackgroundStylePersister. |
| 35 | * Create class ImmGradientPersisterTest for testing save/load of the gradient. |
| 36 | |