Changes between Version 8 and Version 9 of TEXT_CHAR_COLOR_R0
- Timestamp:
- 06/15/09 10:08:03 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TEXT_CHAR_COLOR_R0
v8 v9 48 48 [[Image(source:branches/private/nenko/nenko-text-fonts-interface/doc/uml-design-diagrams/hotText/hotTextCharColor.png)]] 49 49 50 Also a refactoring to BackgroundGradientField, BackgroundImageField and BackgroundPatternField will be made, in order to minimize code duplication and easier test maintenance. These three class use dialog window for user preferences and this is the only difference between them. The goal of this refactoring will be to have only one class - Bac lgroundBoundField, which will handle the code for manipulating Dialog window. Also it will declare two abstract methods :50 Also a refactoring to BackgroundGradientField, BackgroundImageField and BackgroundPatternField will be made, in order to minimize code duplication and easier test maintenance. These three class use dialog window for user preferences and this is the only difference between them. The goal of this refactoring will be to have only one class - BackgroundDialogField, which will handle the code for manipulating Dialog window. Also it will declare two abstract methods : 51 51 * one that will construct the actual DialogInput 52 52 * one that will return the default value for initialization of JPanel 53 53 This refactor won't fix acutal holes in the implementation but will reduce code duplication : 54 54 * getBackgroundModel() : BackgroundStyle - this will replace the actual getBackgroundModel() which is static and is copied through the Background*Field classes 55 * dataInputControl () : Prop <JPanel> - this method will ne moved to Background BoundFiled in it will be initialized with the two introduced abstract methods55 * dataInputControl () : Prop <JPanel> - this method will ne moved to BackgroundDialogFiled in it will be initialized with the two introduced abstract methods 56 56 * validate () and computeEnabled() will have default behaivour 57 * createDialogInput() : DialogInput - this abstract method should create DialogInput that is needed in actual implementation of Background BoundField57 * createDialogInput() : DialogInput - this abstract method should create DialogInput that is needed in actual implementation of BackgroundDialogField 58 58 * getDefaultValue () : Color - this abstract method return value that is used to initializa JPanel's background. This functionality is part of the implementation done so far and won't be fixed. 59 59 … … 64 64 65 65 = Implementation = 66 ^(Describe and link the implementation results here (from the wiki or the repository).)^ 66 Implementation is done according to design 67 68 Changeset: 69 [3456] 67 70 68 71 = Testing =