JComponent
|
+ isEnabled() : boolean
+ setEnabled(boolean)
|
|
JTextField
|
+ JTextField()
+ setAction(Action)
+ addActionListener(ActionListener)
+ getText() : String
|
| Text Fields fire Action Events when the user presses Enter. | |
JComboBox
|
+ JComboBox()
+ setAction(Action)
+ addActionListener(ActionListener)
+ getSelectedItem() : Object
|
| Combo Boxes fire Action Events when the user selects an item. | |
AbstractButton
|
+ addActionListener(ActionListener)
+ doClick()
|
|
JMenuItem
|
+ JMenuItem(Action)
+ addActionListener(ActionListener)
|
| Menu Items fire Action Events when the user selects the item. |
JButton
|
+ JButton(Action)
+ addActionListener(ActionListener)
|
| Buttons fire Action Events when the user clicks the button. |
JToggleButton
|
+ JToggleButton(Action)
+ addActionListener(ActionListener)
+ setSelected(boolean)
+ isSelected() : boolean
|
|
JRadioButton
|
+ JRadioButton(Action)
+ addActionListener(ActionListener)
|
|
JCheckBox
|
+ JCheckBox(Action)
+ addActionListener(ActionListener)
|
|