/[classpath]/classpath/java/awt/AWTEventMulticaster.java
ViewVC logotype

Diff of /classpath/java/awt/AWTEventMulticaster.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by ericb, Sun Mar 31 02:05:37 2002 UTC revision 1.8 by smarothy, Wed Sep 8 20:10:52 2004 UTC
# Line 181  public class AWTEventMulticaster Line 181  public class AWTEventMulticaster
181     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
182     * instances.     * instances.
183     *     *
184     * @param event the event to handle     * @param e the event to handle
185     */     */
186    public void componentResized(ComponentEvent e)    public void componentResized(ComponentEvent e)
187    {    {
# Line 193  public class AWTEventMulticaster Line 193  public class AWTEventMulticaster
193     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
194     * instances.     * instances.
195     *     *
196     * @param event the event to handle     * @param e the event to handle
197     */     */
198    public void componentMoved(ComponentEvent e)    public void componentMoved(ComponentEvent e)
199    {    {
# Line 205  public class AWTEventMulticaster Line 205  public class AWTEventMulticaster
205     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
206     * instances.     * instances.
207     *     *
208     * @param event the event to handle     * @param e the event to handle
209     */     */
210    public void componentShown(ComponentEvent e)    public void componentShown(ComponentEvent e)
211    {    {
# Line 217  public class AWTEventMulticaster Line 217  public class AWTEventMulticaster
217     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
218     * instances.     * instances.
219     *     *
220     * @param event the event to handle     * @param e the event to handle
221     */     */
222    public void componentHidden(ComponentEvent e)    public void componentHidden(ComponentEvent e)
223    {    {
# Line 229  public class AWTEventMulticaster Line 229  public class AWTEventMulticaster
229     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
230     * instances.     * instances.
231     *     *
232     * @param event the event to handle     * @param e the event to handle
233     */     */
234    public void componentAdded(ContainerEvent e)    public void componentAdded(ContainerEvent e)
235    {    {
# Line 241  public class AWTEventMulticaster Line 241  public class AWTEventMulticaster
241     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
242     * instances.     * instances.
243     *     *
244     * @param event the event to handle     * @param e the event to handle
245     */     */
246    public void componentRemoved(ContainerEvent e)    public void componentRemoved(ContainerEvent e)
247    {    {
# Line 253  public class AWTEventMulticaster Line 253  public class AWTEventMulticaster
253     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
254     * instances.     * instances.
255     *     *
256     * @param event the event to handle     * @param e the event to handle
257     */     */
258    public void focusGained(FocusEvent e)    public void focusGained(FocusEvent e)
259    {    {
# Line 265  public class AWTEventMulticaster Line 265  public class AWTEventMulticaster
265     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
266     * instances.     * instances.
267     *     *
268     * @param event the event to handle     * @param e the event to handle
269     */     */
270    public void focusLost(FocusEvent e)    public void focusLost(FocusEvent e)
271    {    {
# Line 277  public class AWTEventMulticaster Line 277  public class AWTEventMulticaster
277     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
278     * instances.     * instances.
279     *     *
280     * @param event the event to handle     * @param e the event to handle
281     */     */
282    public void keyTyped(KeyEvent e)    public void keyTyped(KeyEvent e)
283    {    {
# Line 289  public class AWTEventMulticaster Line 289  public class AWTEventMulticaster
289     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
290     * instances.     * instances.
291     *     *
292     * @param event the event to handle     * @param e the event to handle
293     */     */
294    public void keyPressed(KeyEvent e)    public void keyPressed(KeyEvent e)
295    {    {
# Line 301  public class AWTEventMulticaster Line 301  public class AWTEventMulticaster
301     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
302     * instances.     * instances.
303     *     *
304     * @param event the event to handle     * @param e the event to handle
305     */     */
306    public void keyReleased(KeyEvent e)    public void keyReleased(KeyEvent e)
307    {    {
# Line 313  public class AWTEventMulticaster Line 313  public class AWTEventMulticaster
313     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
314     * instances.     * instances.
315     *     *
316     * @param event the event to handle     * @param e the event to handle
317     */     */
318    public void mouseClicked(MouseEvent e)    public void mouseClicked(MouseEvent e)
319    {    {
# Line 325  public class AWTEventMulticaster Line 325  public class AWTEventMulticaster
325     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
326     * instances.     * instances.
327     *     *
328     * @param event the event to handle     * @param e the event to handle
329     */     */
330    public void mousePressed(MouseEvent e)    public void mousePressed(MouseEvent e)
331    {    {
# Line 337  public class AWTEventMulticaster Line 337  public class AWTEventMulticaster
337     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
338     * instances.     * instances.
339     *     *
340     * @param event the event to handle     * @param e the event to handle
341     */     */
342    public void mouseReleased(MouseEvent e)    public void mouseReleased(MouseEvent e)
343    {    {
# Line 349  public class AWTEventMulticaster Line 349  public class AWTEventMulticaster
349     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
350     * instances.     * instances.
351     *     *
352     * @param event the event to handle     * @param e the event to handle
353     */     */
354    public void mouseEntered(MouseEvent e)    public void mouseEntered(MouseEvent e)
355    {    {
# Line 361  public class AWTEventMulticaster Line 361  public class AWTEventMulticaster
361     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
362     * instances.     * instances.
363     *     *
364     * @param event the event to handle     * @param e the event to handle
365     */     */
366    public void mouseExited(MouseEvent e)    public void mouseExited(MouseEvent e)
367    {    {
# Line 373  public class AWTEventMulticaster Line 373  public class AWTEventMulticaster
373     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
374     * instances.     * instances.
375     *     *
376     * @param event the event to handle     * @param e the event to handle
377     */     */
378    public void mouseDragged(MouseEvent e)    public void mouseDragged(MouseEvent e)
379    {    {
# Line 385  public class AWTEventMulticaster Line 385  public class AWTEventMulticaster
385     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
386     * instances.     * instances.
387     *     *
388     * @param event the event to handle     * @param e the event to handle
389     */     */
390    public void mouseMoved(MouseEvent e)    public void mouseMoved(MouseEvent e)
391    {    {
# Line 397  public class AWTEventMulticaster Line 397  public class AWTEventMulticaster
397     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
398     * instances.     * instances.
399     *     *
400     * @param event the event to handle     * @param e the event to handle
401     */     */
402    public void windowOpened(WindowEvent e)    public void windowOpened(WindowEvent e)
403    {    {
# Line 409  public class AWTEventMulticaster Line 409  public class AWTEventMulticaster
409     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
410     * instances.     * instances.
411     *     *
412     * @param event the event to handle     * @param e the event to handle
413     */     */
414    public void windowClosing(WindowEvent e)    public void windowClosing(WindowEvent e)
415    {    {
# Line 421  public class AWTEventMulticaster Line 421  public class AWTEventMulticaster
421     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
422     * instances.     * instances.
423     *     *
424     * @param event the event to handle     * @param e the event to handle
425     */     */
426    public void windowClosed(WindowEvent e)    public void windowClosed(WindowEvent e)
427    {    {
# Line 433  public class AWTEventMulticaster Line 433  public class AWTEventMulticaster
433     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
434     * instances.     * instances.
435     *     *
436     * @param event the event to handle     * @param e the event to handle
437     */     */
438    public void windowIconified(WindowEvent e)    public void windowIconified(WindowEvent e)
439    {    {
# Line 445  public class AWTEventMulticaster Line 445  public class AWTEventMulticaster
445     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
446     * instances.     * instances.
447     *     *
448     * @param event the event to handle     * @param e the event to handle
449     */     */
450    public void windowDeiconified(WindowEvent e)    public void windowDeiconified(WindowEvent e)
451    {    {
# Line 457  public class AWTEventMulticaster Line 457  public class AWTEventMulticaster
457     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
458     * instances.     * instances.
459     *     *
460     * @param event the event to handle     * @param e the event to handle
461     */     */
462    public void windowActivated(WindowEvent e)    public void windowActivated(WindowEvent e)
463    {    {
# Line 469  public class AWTEventMulticaster Line 469  public class AWTEventMulticaster
469     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
470     * instances.     * instances.
471     *     *
472     * @param event the event to handle     * @param e the event to handle
473     */     */
474    public void windowDeactivated(WindowEvent e)    public void windowDeactivated(WindowEvent e)
475    {    {
# Line 481  public class AWTEventMulticaster Line 481  public class AWTEventMulticaster
481     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
482     * instances.     * instances.
483     *     *
484     * @param event the event to handle     * @param e the event to handle
485     * @since 1.4     * @since 1.4
486     */     */
487    public void windowStateChanged(WindowEvent e)    public void windowStateChanged(WindowEvent e)
# Line 494  public class AWTEventMulticaster Line 494  public class AWTEventMulticaster
494     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
495     * instances.     * instances.
496     *     *
497     * @param event the event to handle     * @param e the event to handle
498     * @since 1.4     * @since 1.4
499     */     */
500    public void windowGainedFocus(WindowEvent e)    public void windowGainedFocus(WindowEvent e)
# Line 507  public class AWTEventMulticaster Line 507  public class AWTEventMulticaster
507     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
508     * instances.     * instances.
509     *     *
510     * @param event the event to handle     * @param e the event to handle
511     * @since 1.4     * @since 1.4
512     */     */
513    public void windowLostFocus(WindowEvent e)    public void windowLostFocus(WindowEvent e)
# Line 520  public class AWTEventMulticaster Line 520  public class AWTEventMulticaster
520     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
521     * instances.     * instances.
522     *     *
523     * @param event the event to handle     * @param e the event to handle
524     */     */
525    public void actionPerformed(ActionEvent e)    public void actionPerformed(ActionEvent e)
526    {    {
# Line 532  public class AWTEventMulticaster Line 532  public class AWTEventMulticaster
532     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
533     * instances.     * instances.
534     *     *
535     * @param event the event to handle     * @param e the event to handle
536     */     */
537    public void itemStateChanged(ItemEvent e)    public void itemStateChanged(ItemEvent e)
538    {    {
# Line 544  public class AWTEventMulticaster Line 544  public class AWTEventMulticaster
544     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
545     * instances.     * instances.
546     *     *
547     * @param event the event to handle     * @param e the event to handle
548     */     */
549    public void adjustmentValueChanged(AdjustmentEvent e)    public void adjustmentValueChanged(AdjustmentEvent e)
550    {    {
# Line 556  public class AWTEventMulticaster Line 556  public class AWTEventMulticaster
556     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
557     * instances.     * instances.
558     *     *
559     * @param event the event to handle     * @param e the event to handle
560     */     */
561    public void textValueChanged(TextEvent e)    public void textValueChanged(TextEvent e)
562    {    {
# Line 568  public class AWTEventMulticaster Line 568  public class AWTEventMulticaster
568     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
569     * instances.     * instances.
570     *     *
571     * @param event the event to handle     * @param e the event to handle
572     * @since 1.2     * @since 1.2
573     */     */
574    public void inputMethodTextChanged(InputMethodEvent e)    public void inputMethodTextChanged(InputMethodEvent e)
# Line 581  public class AWTEventMulticaster Line 581  public class AWTEventMulticaster
581     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
582     * instances.     * instances.
583     *     *
584     * @param event the event to handle     * @param e the event to handle
585     * @since 1.2     * @since 1.2
586     */     */
587    public void caretPositionChanged(InputMethodEvent e)    public void caretPositionChanged(InputMethodEvent e)
# Line 594  public class AWTEventMulticaster Line 594  public class AWTEventMulticaster
594     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
595     * instances.     * instances.
596     *     *
597     * @param event the event to handle     * @param e the event to handle
598     * @since 1.3     * @since 1.3
599     */     */
600    public void hierarchyChanged(HierarchyEvent e)    public void hierarchyChanged(HierarchyEvent e)
# Line 607  public class AWTEventMulticaster Line 607  public class AWTEventMulticaster
607     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
608     * instances.     * instances.
609     *     *
610     * @param event the event to handle     * @param e the event to handle
611     * @since 1.3     * @since 1.3
612     */     */
613    public void ancestorMoved(HierarchyEvent e)    public void ancestorMoved(HierarchyEvent e)
# Line 620  public class AWTEventMulticaster Line 620  public class AWTEventMulticaster
620     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
621     * instances.     * instances.
622     *     *
623     * @param event the event to handle     * @param e the event to handle
624     * @since 1.3     * @since 1.3
625     */     */
626    public void ancestorResized(HierarchyEvent e)    public void ancestorResized(HierarchyEvent e)
# Line 633  public class AWTEventMulticaster Line 633  public class AWTEventMulticaster
633     * Handles this event by dispatching it to the "a" and "b" listener     * Handles this event by dispatching it to the "a" and "b" listener
634     * instances.     * instances.
635     *     *
636     * @param event the event to handle     * @param e the event to handle
637     * @since 1.4     * @since 1.4
638     */     */
639    public void mouseWheelMoved(MouseWheelEvent e)    public void mouseWheelMoved(MouseWheelEvent e)

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26