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' |