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
Does .length start 0 java?
How can we find the sum of two linked lists using stack in java?
How do constructors use this() and super()?
Explain what do you mean by functional overloading in java?
How does remove work in java?
Why pass by reference is not possible in java?
Which is easier netbeans or eclipse?
Is java a pure object oriented language?
define the terminology association.
What is a parent class in java?
Is singleton a bad practice?
What is a map? What are the implementations of map?
Can you create an object of an abstract class?
What is a void in java?
What does || mean in code?