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.microsoft.tfs.client.common.ui.framework.diagnostics.export.ExportRunnable.java

public class ExportRunnable implements IRunnableWithProgress {
    private static final Log log = LogFactory.getLog(ExportRunnable.class);

    private static final String DATA_FILENAME = "data.txt"; //$NON-NLS-1$

    private final DataProviderCollection allProvidersCollection;

From source file com.mobilesorcery.sdk.importproject.FindProjectsRunnable.java

/**
 * 
 * @author Mattias Bybro
 * @deprecated Modify this to ignore .mopro files, until then it's deprecated.
 */
public class FindProjectsRunnable implements IRunnableWithProgress {

From source file com.motorola.studio.android.remote.ui.wireless.runnables.SwitchFromUSBAndConnectToWirelessRunnable.java

/**
 * Service which switches the device to TCP/IP, add it as a remote
 * device to the Device Management and connect to it via the wireless
 * network.
 */
public class SwitchFromUSBAndConnectToWirelessRunnable implements IRunnableWithProgress {

From source file com.nextep.datadesigner.gui.impl.CommandProgress.java

/**
 * @author Christophe Fondacci
 */
public class CommandProgress implements IRunnableWithProgress {

    private ICommand[] commands;

From source file com.nokia.carbide.internal.discovery.ui.p2.FeatureInstallOperation.java

public class FeatureInstallOperation implements IRunnableWithProgress {

    private Collection<URI> uris;
    private Collection<FeatureInfo> featureInfos;
    private boolean wantVersions;
    private ProvisioningUI provisioningUI;

From source file com.nokia.tools.s60.editor.actions.CopyContentDataAction.java

/**
 * Iplementation of Extended Copy -> Copy Element(s). Copies element content,
 * also with information where it should be placed in target theme.
 * 
 * Copies one or more nodes (IContentData) to local clipboard.
 */

From source file com.nokia.tools.s60.editor.ui.views.ComponentStoreView.java

public class ComponentStoreView extends ViewPart implements ISelectionListener, IPartListener,
        IRunnableWithProgress, Runnable, IContributedContentsView, ActionProvider2, IRefreshableObject {

    static String[] partNameTags = new String[] { "Left", "Right", "Top", "Bottom", "Top-Left", "Top-Right",
            "Bottom-Left", "Bottom-Right", "Center" };

From source file com.nokia.tools.s60.wizards.InstallPluginOperation.java

public class InstallPluginOperation implements IRunnableWithProgress {
    private static final String PLUGINS_FOLDER = "plugins";

    private File file;

    public InstallPluginOperation(File file) {

From source file com.nokia.tools.s60.wizards.UninstallPluginOperation.java

public class UninstallPluginOperation implements IRunnableWithProgress {
    private Bundle bundle;

    public UninstallPluginOperation(Bundle bundle) {
        this.bundle = bundle;
    }

From source file com.nokia.tools.screen.ui.wizards.AbstractPackagingOperation.java

public abstract class AbstractPackagingOperation implements IRunnableWithProgress {
    protected PackagingContext context;

    protected IProject project;

    /**