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

  1. package java.awt.dnd;
  2.  
  3. public class DragSourceDropEvent extends DragSourceEvent {
  4.    private boolean dropSuccess;
  5.    private int dropAction = 0;
  6.  
  7.    public DragSourceDropEvent(DragSourceContext var1, int var2, boolean var3) {
  8.       super(var1);
  9.       this.dropSuccess = var3;
  10.       this.dropAction = var2;
  11.    }
  12.  
  13.    public DragSourceDropEvent(DragSourceContext var1) {
  14.       super(var1);
  15.       this.dropSuccess = false;
  16.    }
  17.  
  18.    public boolean getDropSuccess() {
  19.       return this.dropSuccess;
  20.    }
  21.  
  22.    public int getDropAction() {
  23.       return this.dropAction;
  24.    }
  25. }
  26.