What are the advantages of the model over the event-
inheritance model?



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

Post New Answer

More Core Java Interview Questions

How TreeMap sorts the objects inside it?? suppose if have include one employee object and one car object. On what basis it will sort?

5 Answers  


How many bits is a string in java?

0 Answers  


Why destructor is not used in java?

0 Answers  


what is the meaning of java.lang and java.util

6 Answers  


Is a method a function?

0 Answers  


What is a singleton class? Give a practical example of its usage.

0 Answers  


What are the OOAD concepts in java explain with examples?

4 Answers   Aricent, CTS,


What are byte codes?

0 Answers  


What is meant by Static query and Dynamic query?

2 Answers  


How do you bind variables?

0 Answers  


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.

3 Answers   IBM,


How does finally block differ from finalize() method?

0 Answers  


Categories