home *** CD-ROM | disk | FTP | other *** search
- package java.awt.dnd;
-
- public class DragSourceDropEvent extends DragSourceEvent {
- private boolean dropSuccess;
- private int dropAction = 0;
-
- public DragSourceDropEvent(DragSourceContext var1, int var2, boolean var3) {
- super(var1);
- this.dropSuccess = var3;
- this.dropAction = var2;
- }
-
- public DragSourceDropEvent(DragSourceContext var1) {
- super(var1);
- this.dropSuccess = false;
- }
-
- public boolean getDropSuccess() {
- return this.dropSuccess;
- }
-
- public int getDropAction() {
- return this.dropAction;
- }
- }
-