KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > swingwt > awt > dnd > DragGestureListener


1 /*
2    SwingWT
3    Copyright(c)2003-2004, Tomer Barletz
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
11 package swingwt.awt.dnd;
12
13 import java.util.EventListener JavaDoc;
14
15 public interface DragGestureListener extends EventListener JavaDoc {
16   void dragGestureRecognized(DragGestureEvent dge);
17 }
18
Popular Tags