1 16 package swingwt.awt.dnd; 17 18 import java.util.EventObject ; 19 20 21 public class DropTargetEvent extends EventObject { 22 public DropTargetEvent(DropTargetContext context) { 23 super(context.getDropTarget()); 24 this.context = context; 25 } 26 protected DropTargetContext context; 27 public DropTargetContext getDropTargetContext() { 28 return context; 29 } 30 } 31 | Popular Tags |