Java Event Handling Question and Answers

1. What is an adapter class?
 
  • An adapter class provides an empty implementation of all methods in an event listener interface.
  • Adapter classes are useful when you want to receive and process only some of the events that are handled by a particular event listener interface.
  • You can define a new class to act listener by extending one of the adapter classes and implementing only those events in which you are interested.
  • For example, the MouseAdapter class has two methods, mouseDragged() and mouseMoved().
 
Your Name Your Email-ID
Your Answer
2. What interface is extended by AWT event listener?
  All AWT event listeners extend the java.util.EventListener interface.
 
Your Name Your Email-ID
Your Answer
3. What is an event and what are the models available for event handling?
  An event is an event object that describes a state of change in a source. In other words, event occurs when an action is generated, like pressing button, clicking mouse, selecting a list, etc.
There are two types of models for handling events and they are
  • event inheritance model and
  • event delegation model
 
Your Name Your Email-ID
Your Answer
4. What are the advantages of the model over the event inheritance model?
  The event delegation model has two advantages over the event inheritance model. They are
  • It enables event handling by objects other than the ones that generate the events.
  • This allows a clean separation between a components design and its use.
  • 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 be repeatedly process unhandled events as is in the case of the event inheritance.
 
Your Name Your Email-ID
Your Answer
123 Page 1 of 3