Example usage for org.eclipse.jface.wizard ProgressMonitorPart subclass-usage

List of usage examples for org.eclipse.jface.wizard ProgressMonitorPart subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.wizard ProgressMonitorPart subclass-usage.

Usage

From source file org.eclipse.oomph.ui.BackgroundProgressPart.java

/**
 * @author Eike Stepper
 */
public class BackgroundProgressPart extends ProgressMonitorPart {
    public BackgroundProgressPart(Composite parent, Layout layout) {
        super(parent, layout);

From source file org.eclipse.ui.internal.wizards.datatransfer.NonUIThreadProgressMonitorPart.java

/**
 * Similar to {@link ProgressMonitorPart} but that can be used by non-UI jobs.
 * UI operations are wrapped in a {@link Runnable} sent to {@link Display} when
 * necessary.
 *
 * @since 3.12

From source file org.jboss.tools.forge.ui.internal.ext.dialog.ForgeProgressMonitorPart.java

/**
 * A standard implementation of an IProgressMonitor. It consists of a label
 * displaying the task and subtask name, and a progress indicator to show
 * progress. In contrast to <code>ProgressMonitorDialog</code> this class only
 * implements <code>IProgressMonitor</code>.
 */

From source file org.nightlabs.base.ui.progress.SaveProgressMonitorPart.java

/**
 * An implementation of {@link IProgressMonitor} that
 * will do its work on the SWT Display thread.
 * 
 * @author Alexander Bieber <!-- alex [AT] nightlabs [DOT] de -->
 *