What is the advantage of the event-delegation model over the earlier event-inheritance model?

What is the advantage of the event-delegation model over the earlier event-inheritance model?

Devid
Views: 873 | Community Opinion: 1

Tags..  Event-Delegation Model  Event-Inheritance Model  Java Interview  Core Java

Bookmark this page..



Ask a New Question Go to Home

Community Opinion/Answers
 
Enomina Said..

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). This allows a clean separation between a component's design and its use. The other advantage of the eventdelegation
model is that it performs much better in applications where many events are generated. This performance improvement is due to the fact that the event- legation model does not have to repeatedly process unhandled events, as is the case of the event-inheritance model.






What do you think? Add your opinion/answer
*Name
*your opinion/answer: