KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > swingwt > awt > event > TextEvent


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: TextEvent.java,v $
11    Revision 1.2 2003/12/22 08:48:17 bobintetley
12    Fixed up DnD to build temporarily
13
14
15  */

16 package swingwt.awt.event;
17
18 import swingwt.awt.AWTEvent;
19
20 /**
21  *
22  *
23  * @author Tomer Barletz, tomerb@users.sourceforge.net
24  * @version 0.1
25  */

26 public class TextEvent extends AWTEvent {
27     public static final int TEXT_FIRST = 900;
28     public static final int TEXT_LAST = 900;
29     public static final int TEXT_VALUE_CHANGED = TEXT_FIRST;
30
31     private static final long serialVersionUID = 6269902291250941179L;
32
33     /**
34      *
35      * @param source the TextComponent object that originated the event
36      * @param id an integer that identifies the event type
37      */

38     public TextEvent(Object JavaDoc source, int id) {
39         super(source, id);
40     }
41 }
42
Popular Tags