Event Handling Process
Source of an event is modeled as an object. Ex: button click’s object is a button
Type of the event: ActionEvent, WindowEvent, MouseEvent etc. Ex: An ActionEvent object is passed to the application that contains information about the action.
Target of an event: Listener object of the event. Passing the event to a listener means calling the particular method of the listener object.