Changes between Version 18 and Version 19 of BASE_BOUND_CONTROLS_R0


Ignore:
Timestamp:
09/28/08 23:07:49 (17 years ago)
Author:
peko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified BASE_BOUND_CONTROLS_R0

    v18 v19  
    4242 
    4343= Design = 
    44 * A base class for bound controls. Different classes extending it and providing different UI for input of data. 
     44 * A base class for bound controls. Different classes extending it and providing different UI for input of data. 
    4545 
    4646= Implementation = 
    47  
    48 * !BoundBaseControl: 
    49  * A base class for bound controls. 
    50  * A !JLabel to tell the user what the input is about. 
    51  * A !JPanel with an Icon - to inform about the validity of the input. 
    52  * When mouse is over the Icon - a tool-tip is displayed to tell what the current status of the validation is. 
    53 * Three classes that extend !BoundBaseControl: 
    54  * !BoundSpinner - contains a !JSpinner for the input of the user. 
    55  * !BoundTextField - contains a !JTextField for the input of the user. 
    56  * !BoundComboBox - contains a !JComboBox for the input of the user. 
    57 * The only difference in the tree classes is the GUI used for input of data. One should extend these classes and implement the corresponding methods.  
    58 * All of the four classes mentioned above are abstract. If one wants to have a different UI for input of data they should extend the !BoundBaseControl class. Otherwise extend one of the other three. 
    59 * For more information see documentation and classes locate at: 'net.asteasolutions.veda.gui.util.boundcontrols' 
     47 * !BoundBaseControl: 
     48  * A base class for bound controls. 
     49  * A !JLabel to tell the user what the input is about. 
     50  * A !JPanel with an Icon - to inform about the validity of the input. 
     51  * When mouse is over the Icon - a tool-tip is displayed to tell what the current status of the validation is. 
     52 * Three classes that extend !BoundBaseControl: 
     53  * !BoundSpinner - contains a !JSpinner for the input of the user. 
     54  * !BoundTextField - contains a !JTextField for the input of the user. 
     55  * !BoundComboBox - contains a !JComboBox for the input of the user. 
     56 * The only difference in the tree classes is the GUI used for input of data. One should extend these classes and implement the corresponding methods.  
     57 * All of the four classes mentioned above are abstract. If one wants to have a different UI for input of data they should extend the !BoundBaseControl class. Otherwise extend one of the other three. 
     58 * For more information see documentation and classes locate at: 'net.asteasolutions.veda.gui.util.boundcontrols' 
    6059== Related == 
    6160- !BoundTextField class in sophie.