Changes between Version 8 and Version 9 of TEXT_CHAR_COLOR_R0


Ignore:
Timestamp:
06/15/09 10:08:03 (16 years ago)
Author:
nenko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TEXT_CHAR_COLOR_R0

    v8 v9  
    4848[[Image(source:branches/private/nenko/nenko-text-fonts-interface/doc/uml-design-diagrams/hotText/hotTextCharColor.png)]] 
    4949 
    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 - BaclgroundBoundField, which will handle the code for manipulating Dialog window. Also it will declare two abstract methods : 
     50Also 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 : 
    5151 * one that will construct the actual DialogInput 
    5252 * one that will return the default value for initialization of JPanel 
    5353This refactor won't fix acutal holes in the implementation but will reduce code duplication : 
    5454 * 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 BackgroundBoundFiled in it will be initialized with the two introduced abstract methods 
     55 * dataInputControl () : Prop <JPanel> - this method will ne moved to BackgroundDialogFiled in it will be initialized with the two introduced abstract methods 
    5656 * validate () and computeEnabled() will have default behaivour 
    57  * createDialogInput() : DialogInput - this abstract method should create DialogInput that is needed in actual implementation of BackgroundBoundField 
     57 * createDialogInput() : DialogInput - this abstract method should create DialogInput that is needed in actual implementation of BackgroundDialogField 
    5858 * 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. 
    5959 
     
    6464 
    6565= Implementation = 
    66 ^(Describe and link the implementation results here (from the wiki or the repository).)^ 
     66Implementation is done according to design 
     67 
     68Changeset: 
     69 [3456] 
    6770 
    6871= Testing =