What are the advantages of the model over the event-
inheritance model?
Answer / 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 |
How TreeMap sorts the objects inside it?? suppose if have include one employee object and one car object. On what basis it will sort?
How many bits is a string in java?
Why destructor is not used in java?
what is the meaning of java.lang and java.util
Is a method a function?
What is a singleton class? Give a practical example of its usage.
What are the OOAD concepts in java explain with examples?
What are byte codes?
What is meant by Static query and Dynamic query?
How do you bind variables?
What is the differnence between String Buffer and String builder despite having knowledge that String builder is faster than String Buffer and last one is threadsafe.please tell another important difference.
How does finally block differ from finalize() method?