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 / DragSourceEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  380 b   |  14 lines

  1. package java.awt.dnd;
  2.  
  3. import java.util.EventObject;
  4.  
  5. public class DragSourceEvent extends EventObject {
  6.    public DragSourceEvent(DragSourceContext var1) {
  7.       super(var1);
  8.    }
  9.  
  10.    public DragSourceContext getDragSourceContext() {
  11.       return (DragSourceContext)((EventObject)this).getSource();
  12.    }
  13. }
  14.