| Author |
what action listener interface is doing in this code ?
|
naved momin
Ranch Hand
Joined: Jul 03, 2011
Posts: 675
|
|
this is the constructor that set the clock on the label and also keep us updated with time
i now that this is done by a timer but i thing i didnt understand here is the what actionlistener interface is doing here because as far i as know action listener is occured when we want some events like clicking a button but here we are not even clicking on the label but the clock works how can any one explain ?
|
The Only way to learn is ...........do!
Visit my blog http://inaved-momin.blogspot.com/
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
ActionListener is used for so much more than only button clicks. If it were, I think the name would be ButtonListener instead of ActionListener. Right now, I can think of several other uses:
- menu item clicks
- JTextField enter presses
- Timer, as your example has shown
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Harsha Smith
Ranch Hand
Joined: Jul 18, 2011
Posts: 287
|
|
when you invoke start() method on javax.swing.Timer object, it starts sending action events to its listeners.
|
 |
 |
|
|
subject: what action listener interface is doing in this code ?
|
|
|