Chapter 06

Preview:

DESCRIPTION

 

Citation preview

Event-Driven Programming

Chapter 6

6

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.

6

Mouse EventsImport the java.awt.event.* libraryImplement the interface of the MouseListener classFor MouseListener the programmer must implement the methods:

mouseEntered()mouseExited()mousePressed()mouseReleased()mouseClicked()

6

MouseClick.javaApplet responds to mouseClicked events by drawing ovals in the applet window

6

Creating a TimerTimer 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.

6

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.