提交 a324eec2 编写于 作者: S serge-rider

#3019 SQ Lexecute error dialog close handle fix.


Former-commit-id: ae6df6ef
上级 0a809551
......@@ -54,10 +54,22 @@ public class ExecutionQueueErrorJob extends AbstractUIJob {
queue);
int result = dialog.open();
switch (result) {
case IDialogConstants.STOP_ID: response = ExecutionQueueErrorResponse.STOP; break;
case IDialogConstants.SKIP_ID: response = ExecutionQueueErrorResponse.IGNORE; break;
case IDialogConstants.RETRY_ID: response = ExecutionQueueErrorResponse.RETRY; break;
default: response = ExecutionQueueErrorResponse.IGNORE_ALL; break;
case IDialogConstants.CANCEL_ID:
case IDialogConstants.STOP_ID:
response = ExecutionQueueErrorResponse.STOP;
break;
case IDialogConstants.SKIP_ID:
response = ExecutionQueueErrorResponse.IGNORE;
break;
case IDialogConstants.RETRY_ID:
response = ExecutionQueueErrorResponse.RETRY;
break;
case IDialogConstants.IGNORE_ID:
response = ExecutionQueueErrorResponse.IGNORE_ALL;
break;
default:
response = ExecutionQueueErrorResponse.STOP;
break;
}
return Status.OK_STATUS;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册