Community
Participate
Working Groups
switch (dropAdapter.getCurrentOperation()) {
case DND.DROP_MOVE :
handleDropMove(target);
dropTargetEvent.detail = DND.DROP_NONE;
break;
case DND.DROP_COPY :
handleDropCopy(target);
ExceptionHandler.handle(e, RefactoringMessages.OpenRefactoringWizardAction_refactoring, RefactoringMessages.OpenRefactoringWizardAction_exception);
} catch (InterruptedException e) {
//ok
} finally {
// The drag source listener must not perform any operation
// since this drop adapter did the remove of the source even
// if we moved something.
//event.detail= DND.DROP_NONE;
}
clear();
return Status.OK_STATUS;