home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / awt / dnd / DropTargetEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  459 b   |  17 lines

  1. package java.awt.dnd;
  2.  
  3. import java.util.EventObject;
  4.  
  5. public class DropTargetEvent extends EventObject {
  6.    protected DropTargetContext context;
  7.  
  8.    public DropTargetEvent(DropTargetContext var1) {
  9.       super(var1.getDropTarget());
  10.       this.context = var1;
  11.    }
  12.  
  13.    public DropTargetContext getDropTargetContext() {
  14.       return this.context;
  15.    }
  16. }
  17.