This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Java in General and the fly likes what action listener interface is doing in this code ? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "what action listener interface is doing in this code ?" Watch "what action listener interface is doing in this code ?" New topic
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.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: what action listener interface is doing in this code ?
 
Similar Threads
Callout Handler - receiving delayed events on the same thread
Programming style insights
Java: Display Time
Help with Timers!
Swing Timer and Date Class thread question...