KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > swingwt > awt > AWTEventMulticaster


1 /*
2    SwingWT
3    Copyright(c)2003-2004, Tomer Bartletz
4  
5    For more information on distributing and using this program, please
6    see the accompanying "COPYING" file.
7  
8    Contact me by electronic mail: tomerb@users.sourceforge.net
9
10    $Log: AWTEventMulticaster.java,v $
11    Revision 1.4 2004/04/16 10:19:05 dannaab
12    Misc bug fixes, InputMap implementation, preliminary undo support
13
14    Revision 1.3 2004/03/30 10:42:44 bobintetley
15    Many minor bug fixes, event improvements by Dan Naab. Full swing.Icon support
16
17    Revision 1.2 2003/12/22 08:48:17 bobintetley
18    Fixed up DnD to build temporarily
19
20
21  */

22 package swingwt.awt;
23
24 import swingwt.awt.event.*;
25
26 /**
27  *
28  *
29  * @author Tomer Barletz, tomerb@users.sourceforge.net
30  * @version 0.1
31  */

32 public class AWTEventMulticaster implements ComponentListener, ContainerListener, FocusListener, KeyListener,
33                                             MouseListener, MouseMotionListener, WindowListener,
34                                             WindowFocusListener, WindowStateListener, ActionListener,
35                                             ItemListener, AdjustmentListener, TextListener
36                                             {
37
38     public void actionPerformed(ActionEvent e) {
39     }
40
41     public void adjustmentValueChanged(AdjustmentEvent e) {
42     }
43
44     public void componentAdded(ContainerEvent e) {
45     }
46
47     public void componentHidden(ComponentEvent e) {
48     }
49
50     public void componentMoved(ComponentEvent e) {
51     }
52
53     public void componentRemoved(ContainerEvent e) {
54     }
55
56     public void componentResized(ComponentEvent e) {
57     }
58
59     public void componentShown(ComponentEvent e) {
60     }
61
62     public void focusGained(FocusEvent e) {
63     }
64
65     public void focusLost(FocusEvent e) {
66     }
67
68     public void itemStateChanged(ItemEvent e) {
69     }
70
71     public void keyPressed(KeyEvent e) {
72     }
73
74     public void keyReleased(KeyEvent e) {
75     }
76
77     public void keyTyped(KeyEvent e) {
78     }
79
80     public void mouseClicked(MouseEvent e) {
81     }
82
83     public void mouseDragged(MouseEvent e) {
84     }
85
86     public void mouseEntered(MouseEvent e) {
87     }
88
89     public void mouseExited(MouseEvent e) {
90     }
91
92     public void mouseMoved(MouseEvent e) {
93     }
94
95     public void mousePressed(MouseEvent e) {
96     }
97
98     public void mouseReleased(MouseEvent e) {
99     }
100
101     public void textValueChanged(TextEvent e) {
102     }
103
104     public void windowActivated(WindowEvent e) {
105     }
106
107     public void windowClosed(WindowEvent e) {
108     }
109
110     public void windowClosing(WindowEvent e) {
111     }
112
113     public void windowDeactivated(WindowEvent e) {
114     }
115
116     public void windowDeiconified(WindowEvent e) {
117     }
118
119     public void windowGainedFocus(WindowEvent e) {
120     }
121
122     public void windowIconified(WindowEvent e) {
123     }
124
125     public void windowLostFocus(WindowEvent e) {
126     }
127
128     public void windowOpened(WindowEvent e) {
129     }
130
131                                                                                                                                                     public void windowStateChanged(WindowEvent e) {
132                                                                                                                                                     }
133
134 }
135
Popular Tags