The EventObject class and the EventListener interface support event processing.
Latest Answer : Java.util.Event class ...
The java.awt.AWTEvent class is the highest-level class in the AWT event-classhierarchy.
Most of the AWT-related events of the event-delegation model are defined in thejava.awt.event package. The AWTEvent class is defined in the java.awt package.
The event-delegation model has two advantages over the event-inheritance model. First,it enables event handling to be handled by objects other than the ones that generate the events (or their containers).
An event-listener interface defines the methods that must be implemented by an eventhandler for a particular kind of event. An event adapter provides a default implementationof an event-listener interface.
The java.util.EventObject class is the highest-level class in the event-delegation classhierarchy.
The ActionEvent event is generated as the result of the clicking of a button.
A component can handle its own events by implementing the required event-listenerinterface and adding itself as its own event listener.
Java uses layout managers to lay out components in a consistent manner across allwindowing platforms. Since Java's layout managers aren't tied to absolute sizing andpositioning, they are able
What is the difference between the JDK 1.02 event model and the event-delegationmodel introduced with JDK 1.1
The JDK 1.02 event model uses an event inheritance or bubbling approach. In this model,components are required to handle their own events. If they do not handle a particularevent, the event is inherited