进度条效果图

[Java][RCP] 记 ProgressView的使用

As a part of the process of decoupling Eclipse services from workbench, the Progress View has been extracted to a separate plug-in and refactored in order to be available for Eclipse4 applications.

ProgressView已经作为一个独立的plug-in存在了

Currently, the Progress View plug-in is not shipped with Eclipse SDK packages, but it can be installed from update site: https://hudson.eclipse.org/platform/job/eclipse4-progress-view/lastSuccessfulBuild/artifact/releng/org.eclipse.e4.ui.progress.update/target/repository/

Step1: Add plug-in

URL is :

https://hudson.eclipse.org/platform/job/eclipse4-progress-view/lastSuccessfulBuild/artifact/releng/org.eclipse.e4.ui.progress.update/target/repository/

[Java][RCP] 记 ProgressView的使用

 

Step2: 新建Eclipse RCP项目ProgressViewModel

[Java][RCP] 记 ProgressView的使用

 

[Java][RCP] 记 ProgressView的使用

这里只是测试ProgressView,check Create Simple Content

[Java][RCP] 记 ProgressView的使用

Step 3: 在项目中引入plug-in

[Java][RCP] 记 ProgressView的使用

Step 4:添加一个Add-ons,Class URI绑定为bundleclass://org.eclipse.e4.ui.progress/org.eclipse.e4.ui.progress.ProgressViewAddon(Find不到的话就直接写上去)

让它随项目的启动而初始化

[Java][RCP] 记 ProgressView的使用

Step5: 添加一个Part, URI绑定为:bundleclass://org.eclipse.e4.ui.progress/org.eclipse.e4.ui.progress.ProgressView(Find不到的话就直接写上去),让它显示进度条

[Java][RCP] 记 ProgressView的使用

 

Step6: 实例化一个Job,Code as follows,至于Job应该研究一下(http://www.vogella.com/tutorials/EclipseJobs/article.html#prerequisite

button.addSelectionListener(new SelectionListener() {
            
            @Override
            public void widgetSelected(SelectionEvent arg0) {
                Job job = Job.create("Runing Job", monitor -> {
                    SubMonitor subMonitor = SubMonitor.convert(monitor);

                    subMonitor.beginTask("Beging Task...", 5000);

                    for (int i = 0; i < 50; i++) {
                        try {
                            Thread.sleep(500L);
                        } catch (Exception e) {
                            e.printStackTrace();
                        }
                        subMonitor.worked(100);
                    }

                    return Status.OK_STATUS;
                });

                job.schedule();
            }

            @Override
            public void widgetDefaultSelected(SelectionEvent arg0) {}
        });

效果如下:

[Java][RCP] 记 ProgressView的使用

相关文章:

  • 2021-06-20
  • 2021-10-15
  • 2021-12-31
  • 2021-05-11
  • 2021-11-05
  • 2022-12-23
  • 2021-08-18
  • 2021-05-27
猜你喜欢
  • 2021-11-11
  • 2022-12-23
  • 2021-11-29
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2021-05-19
相关资源
相似解决方案