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 com.trivadis.loganalysis.ui.ResultRunnableWithProgress.java

public abstract class ResultRunnableWithProgress<T> implements IRunnableWithProgress {
    private T result = null;

    public synchronized T get() {
        return result;
    }

From source file com.windowtester.codegen.ui.WorkbenchRunnableAdapter.java

/**
 * An <code>IRunnableWithProgress</code> that adapts and  <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 {

From source file de.baumato.jobs.builder.RunnableAdapter.java

/**
 * Lets a <tt>Runnable</tt> act as a <tt>IRunnableWithProgress</tt> with unknown amount of work.
 */
public class RunnableAdapter implements IRunnableWithProgress {

    private final String title;

From source file de.blizzy.backup.check.CheckRun.java

public class CheckRun implements IRunnableWithProgress {
    private static final class FileCheckResult {
        static final FileCheckResult BROKEN = new FileCheckResult(false, null);

        boolean ok;
        String checksumSHA256;

From source file de.bmw.yamaica.common.ui.utils.FileSystemExportOperation.java

public class FileSystemExportOperation implements IRunnableWithProgress {
    private static final Logger LOGGER = Logger.getLogger(FileSystemExportOperation.class.getName());

    protected IPath directoryPath;
    protected IContainer source;
    protected IOverwriteQuery overwriteImplementor;

From source file de.bmw.yamaica.ea.core.EAProjectLoader.java

public class EAProjectLoader implements Runnable, IRunnableWithProgress {
    protected final File eaProject;
    protected final boolean createFile;
    protected boolean isDisposed = false;
    protected boolean executionStarted = false;
    protected EAInstance eaInstance = null;

From source file de.bmw.yamaica.franca.ui.HtmlExportOperation.java

public class HtmlExportOperation implements IRunnableWithProgress {
    private static final String HTML_FILE_EXTENSION = ".html";
    protected FrancaPersistenceManager francaPersistenceManager;
    protected IPath directoryPath;
    protected List<IResource> resources;

From source file de.fu_berlin.inf.jtourbus.view.TourCreateRunnable.java

class TourCreateRunnable implements IRunnableWithProgress {

    private final TourBusRoutesContentProvider fContentProvider;

    TourCreateRunnable(TourBusRoutesContentProvider provider) {
        fContentProvider = provider;

From source file de.itemis.gmf.tools.contribution.GMFToolsGeneration.java

public class GMFToolsGeneration implements IRunnableWithProgress {

    private final GmfModel gmfModel;
    private boolean deleteGmfGenModel = PreferenceUtil.isDeleteGmfGen();
    private boolean transformMapping2GmfGenModel = PreferenceUtil.isTransformMap2GmfGen();
    private boolean transformGmfGenModels = PreferenceUtil.isTransformGmfGen();

From source file de.jcup.egradle.eclipse.execution.GradleRunnableWithProgress.java

public class GradleRunnableWithProgress implements IRunnableWithProgress {
    private GradleExecutionDelegate execution;

    public GradleRunnableWithProgress(GradleExecutionDelegate execution) {
        notNull(execution, "'execution' may not be null");
        this.execution = execution;