Specifications

Sun Services
Java™ Programming Language
Module 11, slide 18 of 22
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
Event Adapters
The listener classes that you define can extend adapter
classes and override only the methods that you need.
An example is:
1 import java.awt.*;
2 import java.awt.event.*;
3
4 public class MouseClickHandler extends MouseAdapter {
5
6 // We just need the mouseClick handler, so we use
7 // an adapter to avoid having to write all the
8 // event handler methods
9
10 public void mouseClicked(MouseEvent e) {
11 // Do stuff with the mouse click...
12 }
13 }