I am not convinced. Here is a quote from
David M.Geary Graphic Java 1.2. Vol.1 AWT. The Sun Microsystems Press, p.318:
AWT TIP...
Not All Events are Delivered to Components
A common mistake when using the inheritance-based mechanism under the delegation event model is neglecting to call enableEvents(long). Under the inheritance-based event model, all events were deliverd to a component, whether the component was interested in the event or not. The delegation event model is more selective, delivering events only to components that indicate interest in the particular type of event by calling enableEvent(long) or adding a listener to the component. Therefore, if you must use the inheritance-based mechanism, don't forget to call enableEvents() for events you are interested in."
Well, Sun seems tries to silence the inheritance-based model and there is no much to read...
But I understood that it is possible to mix event models. Other opinions?