SelectionListener 中的 JFace 关闭对话框
JFace close dialog in SelectionListener
如何在 SelectionListener
中关闭 Dialog
?目前我的 SelectionListener
看起来像这样:
public void widgetSelected(SelectionEvent e) {
ICommandService commandService = (ICommandService) PlatformUI.getWorkbench()
.getService(ICommandService.class);
IHandlerService handlerService = (IHandlerService) PlatformUI.getWorkbench()
.getService(IHandlerService.class);
Command command = commandService
.getCommand("com.mainfirst.backoffice.gui.accounting.command.createBookingReversal");
Map<String, String> params = new HashMap<String, String>();
params.put("com.mainfirst.backoffice.gui.accounting.reversalCodeParameter",
String.valueOf(model.getVal().getCode()));
ParameterizedCommand paraCommand = ParameterizedCommand.generateCommand(command, params);
try {
handlerService.executeCommand(paraCommand, null);
} catch (Exception ex) {
Status status = new Status(IStatus.ERROR, AccountingActivator.PLUGIN_ID,
"Error opening reversal wizard", ex);
StatusManager.getManager().handle(status, StatusManager.SHOW);
throw new RuntimeException(ex);
}
close();
}
如您所见,我确实调用了 close();
,但 Dialog
最后确实保持打开状态。将调用移动到 finally
块内也无济于事。我的命令在 Dialog
前面打开一个新的 Wizard
。我可能必须在 Wizard
打开之前关闭 Dialog
吗?
如果您希望对话框在命令 运行ning 完成之前关闭,您将需要 运行 命令异步执行。为此使用 Display.asyncExec
。使用类似:
public void widgetSelected(SelectionEvent e) {
Display.getDefault().asyncExec(() ->
{
... code to call command
});
close();
}
(假设 Java 8,对 Java 7 或更早版本使用 Runnable
。
如何在 SelectionListener
中关闭 Dialog
?目前我的 SelectionListener
看起来像这样:
public void widgetSelected(SelectionEvent e) {
ICommandService commandService = (ICommandService) PlatformUI.getWorkbench()
.getService(ICommandService.class);
IHandlerService handlerService = (IHandlerService) PlatformUI.getWorkbench()
.getService(IHandlerService.class);
Command command = commandService
.getCommand("com.mainfirst.backoffice.gui.accounting.command.createBookingReversal");
Map<String, String> params = new HashMap<String, String>();
params.put("com.mainfirst.backoffice.gui.accounting.reversalCodeParameter",
String.valueOf(model.getVal().getCode()));
ParameterizedCommand paraCommand = ParameterizedCommand.generateCommand(command, params);
try {
handlerService.executeCommand(paraCommand, null);
} catch (Exception ex) {
Status status = new Status(IStatus.ERROR, AccountingActivator.PLUGIN_ID,
"Error opening reversal wizard", ex);
StatusManager.getManager().handle(status, StatusManager.SHOW);
throw new RuntimeException(ex);
}
close();
}
如您所见,我确实调用了 close();
,但 Dialog
最后确实保持打开状态。将调用移动到 finally
块内也无济于事。我的命令在 Dialog
前面打开一个新的 Wizard
。我可能必须在 Wizard
打开之前关闭 Dialog
吗?
如果您希望对话框在命令 运行ning 完成之前关闭,您将需要 运行 命令异步执行。为此使用 Display.asyncExec
。使用类似:
public void widgetSelected(SelectionEvent e) {
Display.getDefault().asyncExec(() ->
{
... code to call command
});
close();
}
(假设 Java 8,对 Java 7 或更早版本使用 Runnable
。