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.tracecompass.tmf.ui.project.operations.internal.SelectTracesOperation.java

/**
 * Operation to add traces to an experiment.
 *
 * @author Bernd Hufmann
 */
public class SelectTracesOperation implements IRunnableWithProgress {

From source file org.eclipse.tracecompass.tmf.ui.project.operations.internal.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.triquetrum.workflow.editor.wizard.MomlExportOperation.java

@SuppressWarnings("restriction")
public class MomlExportOperation implements IRunnableWithProgress {
    private IPath path;

    private IProgressMonitor monitor;

From source file org.eclipse.ui.actions.WorkspaceModifyOperation.java

/**
 * An operation which potentially makes changes to the workspace. All resource
 * modification should be performed using this operation. The primary
 * consequence of using this operation is that events which typically occur as a
 * result of workspace changes (such as the firing of resource deltas,
 * performance of autobuilds, etc.) are generally deferred until the outermost operation

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

/**
 *   Operation for exporting a resource and its children to a new .zip or
 *  .tar.gz file.
 *  
 *  @since 3.1
 */

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

/**
 *   Operation for exporting the contents of a resource to the local file system.
 */
public class FileSystemExportOperation implements IRunnableWithProgress {
    private IPath path;

From source file org.eclipse.ui.wizards.datatransfer.SelectFilesOperation.java

/**
 *   Operation responsible for traversing a specified file system position
 *   recursively and building
 *   -   a tree that represents the container structure
 *   -   a collection containing all files meeting a specified extension criteria
 *

From source file org.eclipse.virgo.ide.runtime.internal.ui.repository.RefreshBundleJob.java

/**
 * @author Miles Parker
 * @author Leo Dos Santos
 */
public class RefreshBundleJob implements IRunnableWithProgress {

From source file org.eclipse.virgo.ide.ui.internal.actions.ManifestFormatOperation.java

/**
 * @author Christian Dupuis
 * @author Leo Dos Santos
 */
public class ManifestFormatOperation implements IRunnableWithProgress {

From source file org.eclipse.vorto.codegen.ui.progresstask.IProgressTask.java

public interface IProgressTask extends IRunnableWithProgress {

    public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException;

    public String getErrorMessage();