@@ -92,14 +92,14 @@ Rustam_Z🚀, 9.10.2020
9292-  [HandleEvent1 ](programs/ HandleEvent1 . java) with the use of Inner  Classes 
9393
9494- 	```
95- 	User  Action 						 Object 			Generated 
95+ 	User  Action 			Object 			Generated 
9696
97- 	Click  a button					 JButton 			ActionEvent 
98- 	Click  a check box				 JCheckBox 		ItemEvent , ActionEvent 
99- 	Click  a radio button			 JRadioButton 	ItemEvent , ActionEvent 
97+ 	Click  a button			JButton 			ActionEvent 
98+ 	Click  a check box		JCheckBox 		ItemEvent , ActionEvent 
99+ 	Click  a radio button		JRadioButton 	 	ItemEvent , ActionEvent 
100100	Press  return  on a text field	JTextField 		ActionEvent 
101- 	Select  a new  item				 JComboBox		ItemEvent, ActionEvent
102- 	Window opened, closed, etc.		 Window			WindowEvent 
101+ 	Select  a new  item		JComboBox		ItemEvent, ActionEvent
102+ 	Window opened, closed, etc.	Window			WindowEvent 
103103	Mouse pressed, released, etc.	Component		MouseEvent 
104104	Key released, pressed, etc. 	Component		KeyEvent 
105105	```
@@ -109,21 +109,21 @@ Rustam_Z🚀, 9.10.2020
109109	ActionEvent 		ActionListener 		actionPerformed(ActionEvent )
110110	ItemEvent 		ItemListener 		itemStateChanged(ItemEvent )
111111	WindowEvent 		WindowListener 		windowClosing(WindowEvent )
112- 										 windowOpened(WindowEvent )
113- 										 windowIconified(WindowEvent )
114- 										 windowDeiconified(WindowEvent )
115- 										 windowClosed(WindowEvent )
116- 										 windowActivated(WindowEvent )
117- 										 windowDeactivated(WindowEvent )
118- 	ContainerEvent 	ContainerListener 	componentAdded(ContainerEvent )
119- 										 componentRemoved(ContainerEvent ) 
112+ 							windowOpened(WindowEvent )
113+ 							windowIconified(WindowEvent )
114+ 							windowDeiconified(WindowEvent )
115+ 							windowClosed(WindowEvent )
116+ 							windowActivated(WindowEvent )
117+ 							windowDeactivated(WindowEvent )
118+ 	ContainerEvent 		 ContainerListener 	componentAdded(ContainerEvent )
119+ 							componentRemoved(ContainerEvent ) 
120120	MouseEvent 		MouseListener 		mousePressed(MouseEvent )
121- 										 mouseReleased(MouseEvent ) 
122- 										 mouseClicked(MouseEvent )
123- 										 mouseExited(MouseEvent )	
124- 										 mouseEntered(MouseEvent )
125- 	KeyEvent 		KeyListener 			 keyPressed(KeyEvent )
126- 										 keyReleased(KeyEvent ) 
127- 										 keyTypeed(KeyEvent )
121+ 							mouseReleased(MouseEvent ) 
122+ 							mouseClicked(MouseEvent )
123+ 							mouseExited(MouseEvent )	
124+ 							mouseEntered(MouseEvent )
125+ 	KeyEvent 		KeyListener 		keyPressed(KeyEvent )
126+ 							keyReleased(KeyEvent ) 
127+ 							keyTypeed(KeyEvent )
128128
129129	```
0 commit comments