当我开始工作时,我默认获得NullProgressMonitor
而不是进度对话框。我该如何改变这种行为?
根据“提供有关工作的反馈”下的article,您需要设置job.setUser(true);
来获取进度对话框。
但这对我不起作用。
为了重现这个问题,我创建了一个带有示例内容的新Eclipse4项目并修改了创建的AboutHandler:
import org.eclipse.core.runtime.*;
import org.eclipse.core.runtime.jobs.*;
import org.eclipse.e4.core.di.annotations.*;
import org.eclipse.swt.widgets.*;
public class AboutHandler
{
@Execute
public void execute(Shell shell)
{
Job j = new YourThread(10);
j.setUser(true);
j.schedule();
}
private static class YourThread extends Job
{
private int workload;
public YourThread(int workload)
{
super("Test");
this.workload = workload;
}
@Override
public IStatus run(IProgressMonitor monitor)
{
// Tell the user what you are doing
monitor.beginTask("Copying files", workload);
// Do your work
for (int i = 0; i < workload; i++)
{
// Optionally add subtasks
monitor.subTask("Copying file " + (i + 1) + " of " + workload + "...");
System.out.println("Copying file " + (i + 1) + " of " + workload + "...");
try
{
Thread.sleep(2000);
}
catch (InterruptedException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
// Tell the monitor that you successfully finished one item of
// "workload"-many
monitor.worked(1);
// Check if the user pressed "cancel"
if (monitor.isCanceled())
{
monitor.done();
return Status.CANCEL_STATUS;
}
}
// You are done
monitor.done();
return Status.OK_STATUS;
}
}
}
当我按下About-menuitem时,我唯一看到的是println(),在调试器中我看到monitor
是NullProgressMonitor
。
这是默认行为吗?我该如何改变呢?
我写了我自己的IProgressMonitor
greg-449建议。我发现jFace ProgressMonitorDialog
包含IProgressMonitor
,对我来说是一个很好的参考。
答案 0 :(得分:1)
对于e4应用程序,您有责任使用以下方式为作业系统提供进度提供程序:
Job.getJobManager().setProgressProvider(provider);
其中'provider'是一个扩展ProgressProvider
的类。提供程序返回作业使用的进度监视器。
This article包含有关进度提供程序的一些信息。