70 likes | 303 Views
Chapter 6. Event-Driven Programming. Event Sources and Listeners. An event is an object that signals something has happened. An event source is the object that raises an event. An event listener is an object responding to an event raised by an event source. Mouse Events.
E N D
Chapter 6 Event-Driven Programming
Event Sources and Listeners • An event is an object that signals something has happened. • An event source is the object that raises an event. • An event listener is an object responding to an event raised by an event source.
Mouse Events • Import the java.awt.event.* library • Implement the interface of the MouseListener class • For MouseListener the programmer must implement the methods: • mouseEntered() • mouseExited() • mousePressed() • mouseReleased() • mouseClicked()
MouseClick.java • Applet responds to mouseClicked events by drawing ovals in the applet window
Creating a Timer • Timer class raises Timer events at specific intervals. • To “hear” Timer events, a class must implement the ActionListener interface. • ActionListener can be defined as a standard Java-named class or as an anonymous inner class.
Anonymous Classes • Defined within another class, and not given a specific name. • Anonymous inner classes can be hidden from other classes in the package. • These classes have access to all members of the outer class.