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.ibm.mq.explorer.ms0s.mqsceditor.doc.MQSCPartitionParser.java

/**
 * @author jlowrey
 */
public class MQSCPartitionParser implements IRunnableWithProgress {
    private ITypedRegion[] partitions;

From source file com.ibm.wala.ide.AbstractJavaAnalysisAction.java

/**
 * An Eclipse action that analyzes a Java selection
 */
public abstract class AbstractJavaAnalysisAction implements IObjectActionDelegate, IRunnableWithProgress {

    /**

From source file com.ifedorenko.p2browser.director.IInstallableUnitHierarchyCalculator.java

public interface IInstallableUnitHierarchyCalculator extends IRunnableWithProgress {
    public InstallableUnitDAG getHierarchy();

    public List<IInstallableUnit> getList();
}

From source file com.iw.plugins.spindle.ui.wizards.ResourceCreationRunnable.java

class ResourceCreationRunnable implements IRunnableWithProgress {

    public static final int DO = 0;
    public static final int UNDO = 1;
    private List filesToCreate = new ArrayList();
    private List createdResources = new ArrayList();

From source file com.legstar.eclipse.plugin.common.wizards.AbstractWizardRunnable.java

/**
 * Abstract backend task. Provides common ant launcher capabilities.
 */
public abstract class AbstractWizardRunnable implements IRunnableWithProgress {

    /** The model to build from. */

From source file com.mentor.nucleus.bp.core.ui.IModelImport.java

public interface IModelImport extends IRunnableWithProgress {

    public static final int PPS_OK = 0;
    public static final int PPS_ERROR = -1;
    public static final int PPS_ASK = -2;

From source file com.mentor.nucleus.bp.io.core.CoreExport.java

public abstract class CoreExport implements IRunnableWithProgress {
    protected Ooaofooa m_modelRoot = null;
    private boolean m_exportOAL = false;
    private boolean m_exportGraphics = true;
    private boolean errorLoggedDuringParse = false;
    public static boolean forceProxyExport = false;

From source file com.mercatis.lighthouse3.ui.environment.base.adapters.RunnableWithProgressAndFuture.java

public abstract class RunnableWithProgressAndFuture<V> implements IRunnableWithProgress {

    private final ReentrantLock lock = new ReentrantLock();

    private final Condition completeCondition = lock.newCondition();

From source file com.microsoft.tfs.client.common.ui.framework.command.RunnableWithProgressCommandAdapter.java

/**
 * <p>
 * This class adapts an instance of {@link ICommand} to the
 * {@link IRunnableWithProgress} interface.
 * </p>
 *

From source file com.microsoft.tfs.client.common.ui.framework.diagnostics.cache.CollectionRunnable.java

public class CollectionRunnable implements IRunnableWithProgress {
    private final List dataProviderWrappers = new ArrayList();
    private boolean cancelled;

    public CollectionRunnable(final DataProviderInfo[] dataProviders) {
        for (int i = 0; i < dataProviders.length; i++) {