- The event listener represents the interface which is responsible to handle the events.
- The java.util.EventListener interface is extended by all the AWT event listeners.
public interface EventListener.
| EventListener | Description |
| ActionListener. | Used for receiving the action events. |
| ComponentListener | Used for receiving the component events. |
| KeyListener | Used for receiving the key events. |
| ItemListener | Used for receiving the item events. |
| MouseListener | Used for receiving the mouse events. |
| TextListener | Used for receiving the text events. |
| WindowListener | Used for receiving the window events. |
| AdjustmentListener | Used for receiving the adjustment events. |
| ContainerListener | Used for receiving the container events. |
| MouseMotionListener | Used for receiving the mouse motion events. |
| FocusListener | Used for receiving the focus events. |