Example usage for org.eclipse.jface.operation IRunnableWithProgress interface-usage

List of usage examples for org.eclipse.jface.operation IRunnableWithProgress interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.operation IRunnableWithProgress interface-usage.

Usage

From source file org.eclipse.jubula.client.ui.rcp.wizards.search.refactor.ReplaceTestCaseTransaction.java

/**
 * The actual operation executing the replacement
 * @author BREDEX GmbH
 *
 */
public class ReplaceTestCaseTransaction implements IRunnableWithProgress, ITransaction {

From source file org.eclipse.linuxtools.internal.docker.ui.utils.IRunnableWithResult.java

/**
 * An {@link IRunnableWithProgress} that can return a result.
 * 
 * @author xcoulon
 *
 */

From source file org.eclipse.linuxtools.internal.oprofile.ui.view.OprofileViewLogReaderAction.java

/**
 * A Runnable to read oprofiled's logfile
 */
class LogReader implements Runnable, IRunnableWithProgress {
    private static long lastModified = -1;
    private static String contents = null;

From source file org.eclipse.linuxtools.internal.tmf.ui.project.operations.TmfWorkspaceModifyOperation.java

/**
 * Operation to modify the workspace that refreshes workspace at the end of the operation.
 *
 * For refreshing periodically use {@link WorkspaceModifyOperation} instead.
 *
 * @author Bernd Hufmann

From source file org.eclipse.linuxtools.oprofile.ui.view.OprofileViewLogReaderAction.java

/**
 * A Runnable to read oprofiled's logfile 
 */
class LogReader implements Runnable, IRunnableWithProgress {
    private static long _lastModified = -1;
    private static String _contents = null;

From source file org.eclipse.linuxtools.rpm.ui.SRPMImportOperation.java

/**
 * Import Operation Class for RPM plug-in. This allows us to abstract the operations
 *  to  a utility class which also inherits IRunnableWithProgress that allows use of
 * progress bar
 */

From source file org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.java

/**
 * An <code>IRunnableWithProgress</code> that adapts an <code>IWorkspaceRunnable</code>
 * so that is can be executed inside <code>IRunnableContext</code>. <code>OperationCanceledException</code>
 * thrown by the adapted runnable are caught and re-thrown as a <code>InterruptedException</code>.
 */
public class WorkbenchRunnableAdapter implements IRunnableWithProgress, IThreadListener {

From source file org.eclipse.m2e.core.ui.internal.wizards.AbstractCreateMavenProjectsOperation.java

public abstract class AbstractCreateMavenProjectsOperation implements IRunnableWithProgress {

    private final List<IWorkingSet> workingSets;

    public AbstractCreateMavenProjectsOperation(List<IWorkingSet> workingSets) {
        this.workingSets = workingSets;

From source file org.eclipse.m2e.internal.discovery.operation.MavenDiscoveryInstallOperation.java

@SuppressWarnings("restriction")
public class MavenDiscoveryInstallOperation implements IRunnableWithProgress {
    private Collection<CatalogItem> installableConnectors;

    private ProvisioningSession session;

From source file org.eclipse.m2m.internal.qvt.oml.samples.ui.SampleProjectsCreationOperation.java

/**
 * Sample project creation operation
 */
public class SampleProjectsCreationOperation implements IRunnableWithProgress {

    protected static abstract class OverwriteQuery implements IOverwriteQuery {