Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java: What's the difference between ActionEvent and ItemEvent on a JRadioButton?

They're both raised once after the mouse button is released and both can have all the information available on the JRadioButton right? Is there any difference?

like image 955
iceburn Avatar asked Aug 17 '10 03:08

iceburn


1 Answers

An ItemListeners are notified when ever the state of the button is changed, whether through a user interacting with the button or programmatically (via the setSelected method). ActionListeners on the other hand will be called when a user interacts with the button (but can be simulated programmatically via the onClick method).

Note that a user interacting with the button such as clicking or hitting the space bar will also change the state of the button and raise an item event as well as an action event. Generally, you will want to define either one or the other, don't listen for both action events and item events on the button.

like image 162
krock Avatar answered Sep 19 '22 23:09

krock