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; 14 15 public interface DragGestureListener extends EventListener { 16 void dragGestureRecognized(DragGestureEvent dge); 17 } 18