What are the advantages of the model over the event-
inheritance model?
Answer Posted / janet
The event-delegation model has two advantages over the
event-inheritance model
they are
1.it enables event handling by objects other than the ones
generate the events.This allows a clean seperation between
a components design and it's use.
2. it performs much better in applications where many
events are generated.This performence improvement is due to
the fact that the event-delegation model doesn't have to be
repeatedly process unhandled events as is the case of the
event-inheritence.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
what is object-oriented programming in java?
Can a method be static?
Is main a function?
What is arrays sort in java?
What is the default value of the local variables?
Can we have try without catch block?
How can we access some class in another class in java?
List some java keywords sun like c, c + + keywords?
Is 9 a prime number?
Explain why wait(), notify() and notifyall() methods are in object class rather than in the reading class?
Explain the difference between an object-oriented programming language and object-based programming language?
What does serializing data mean?
Is there a jre for java 11?
Define a java class.
Is linked list a linear or non-linear data structure?