1、AWT事件繼承層次

2、常用AWT事件類型列表
ActionEvent?? ? KeyEvent
AdjustmentEvent ??? MouseEvent
FocusEvent ??? MouseWheelEvent
ItemEvent ??? WindowEvent用于監聽這些事件的接口:
ActionListener MouseMotionListener
AdjustmentListener MouseWheelListener
FocusListener WindowListener
ItemListener WindowFocusListener
KeyListener WindowStateListener
MouseListener
常用的適配器類:
FocusAdapter MouseMotionAdapter
KeyAdapter WindowAdapter
MouseAdapter
3、事件監聽原理:
接收事件的類必須實現監聽接口,這個類要用事件源注冊,然后,接受所需要的事件對象,并通過監聽器接口中的方法對事件作出相應的處理
4、所有AWT事件源都支持多點傳送(multicast)模型,即同一個事件可以發送給多個監聽器對象。當時API不能保證一個給定事件源注冊的一組監聽器傳送事件的次序,因此不要編寫依賴傳送次序的程序邏輯。