1 7 8 package java.awt.dnd; 9 10 import java.util.EventListener ; 11 12 31 32 public interface DragSourceListener extends EventListener { 33 34 46 void dragEnter(DragSourceDragEvent dsde); 47 48 61 void dragOver(DragSourceDragEvent dsde); 62 63 72 void dropActionChanged(DragSourceDragEvent dsde); 73 74 94 void dragExit(DragSourceEvent dse); 95 96 108 void dragDropEnd(DragSourceDropEvent dsde); 109 } 110 111 112 113 114 115 116 | Popular Tags |