java.util
Interface EventListener

All Known Subinterfaces:
BridgeTesterListener, ButtonPushListener, EncapsulatedEventListener, sunw.util.EventListener

public interface EventListener

The EventListener interface is the prototypical interface from which all event listener interfaces shall be derived. EventListener defines no methods and exists merely as a way of identifying sub-types as event listeners.

By convention all derived EventListener interfaces shall specify their event notification methods according to a recognisable design pattern with a method signature of:

public void eventNotificationMethodName(EventType e);