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.gmf.internal.sketch.transformer.SketchTransformer.java

/**
 * @author dstadnik
 */
public class SketchTransformer implements IRunnableWithProgress {

    private SketchDiagram diagram;

From source file org.eclipse.gmt.modisco.jm2t.internal.ui.wizard.page.WorkspaceRunnableAdapter.java

/**
 * IRunnableWithProgressAdapter to allow it to run an IWorkspaceRunnable.
 */
public class WorkspaceRunnableAdapter implements IRunnableWithProgress {
    private IWorkspaceRunnable workspaceRunnable;

From source file org.eclipse.jdt.internal.ui.actions.WorkbenchRunnableAdapter.java

/**
 * An {@link IRunnableWithProgress} that adapts an {@link IWorkspaceRunnable} so that is can be
 * executed inside an {@link IRunnableContext}. The runnable is run as an
 * {@linkplain JavaCore#run(IWorkspaceRunnable, ISchedulingRule, IProgressMonitor) atomic Java model operation}.
 * <p>
 * {@link OperationCanceledException}s thrown by the

From source file org.eclipse.jdt.internal.ui.exampleprojects.ExampleProjectCreationOperation.java

public class ExampleProjectCreationOperation implements IRunnableWithProgress {

    private IResource fElementToOpen;

    private ExampleProjectCreationWizardPage fPage;
    private IOverwriteQuery fOverwriteQuery;

From source file org.eclipse.jdt.ui.jarpackager.IJarExportRunnable.java

/**
 * A runnable which executes a JAR export operation within the workspace.
 *
 * Clients may implement this interface.
 *
 * @see org.eclipse.jdt.ui.jarpackager.JarPackageData#createJarExportRunnable(org.eclipse.swt.widgets.Shell)

From source file org.eclipse.jpt.common.ui.internal.jface.RunnableWithProgressAdapter.java

/**
 * Convenience implementation of {@link IRunnableWithProgress}.
 */
public class RunnableWithProgressAdapter implements IRunnableWithProgress {
    public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
        // NOP

From source file org.eclipse.jst.j2ee.internal.UpdateManifestOperation.java

/**
 * @deprecated as of wtp 3.2
 * @author jialin
 */
public class UpdateManifestOperation implements org.eclipse.jface.operation.IRunnableWithProgress {
    protected String projectName;

From source file org.eclipse.jubula.client.core.progress.AbstractRunnableWithProgress.java

/**
 * An {@link IRunnableWithProgress} with a return result.
 *
 * @param <T> The type of the return result.
 * 
 * @author BREDEX GmbH

From source file org.eclipse.jubula.client.ui.rcp.handlers.project.ExportFileOperation.java

/**
 * @author BREDEX GmbH
 * @created Jan 22, 2010
 */
public final class ExportFileOperation implements IRunnableWithProgress {

From source file org.eclipse.jubula.client.ui.rcp.wizards.refactor.param.ChangeCtdsColumnUsageOperation.java

/**
 * Operation for replacing the parameter names.
 * @author BREDEX GmbH
 */
public class ChangeCtdsColumnUsageOperation extends AbstractEditParametersHandler implements IRunnableWithProgress {