Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.

Let us know at info@questionaries.org

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

5 like 0 dislike
Hello
What is the advantage of the event-delegation model over the earlier event-inheritance model in Java?
please reply me. i am waiting for your reply.
Thanx
asked 1 year ago by DBA-boss (120,990 points)

1 Answer

1 like 0 dislike
 
Best answer
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 event-delegation 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-delegation model does not have to repeatedly process unhandled events, as is the case of the event-inheritance model.
answered 1 year ago by eagles11 (179,830 points)

Related questions

3 like 0 dislike
1 answer
1 like 0 dislike
1 answer
8 like 0 dislike
1 answer
5 like 0 dislike
1 answer
6 like 0 dislike
1 answer