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.siteview.mde.internal.ui.editor.actions.FormatOperation.java

public class FormatOperation implements IRunnableWithProgress {

    private Object[] fObjects;

    public FormatOperation(Object[] objects) {
        fObjects = objects;

From source file com.siteview.mde.internal.ui.editor.monitor.CreateManifestOperation.java

public class CreateManifestOperation implements IRunnableWithProgress {

    private IMonitorModelBase fModel;

    public CreateManifestOperation(IMonitorModelBase model) {
        fModel = model;

From source file com.siteview.mde.internal.ui.nls.GetNonExternalizedStringsOperation.java

public class GetNonExternalizedStringsOperation implements IRunnableWithProgress {

    private ISelection fSelection;
    private ArrayList fSelectedModels;
    private ModelChangeTable fModelChangeTable;
    private boolean fCanceled;

From source file com.siteview.mde.internal.ui.nls.InternationalizeOperation.java

/**
 * InternationalizeOperation is responsible for populating a plug-in model table
 * containing the list of plug-ins (workspace and external) prior to running the
 * wizard. An instance of this class must be created before creating an
 * InternationlizeWizard instance.
 * 

From source file com.siteview.mde.internal.ui.samples.SampleOperation.java

public class SampleOperation implements IRunnableWithProgress {
    private static final String SAMPLE_PROPERTIES = "sample.properties"; //$NON-NLS-1$

    private IConfigurationElement sample;

    private String[] projectNames;

From source file com.siteview.mde.internal.ui.search.dependencies.GatherUnusedDependenciesOperation.java

public class GatherUnusedDependenciesOperation implements IRunnableWithProgress {

    class Requestor extends SearchRequestor {
        boolean fFound = false;

        public void acceptSearchMatch(SearchMatch match) throws CoreException {

From source file com.siteview.mde.internal.ui.views.plugins.JavaSearchOperation.java

public class JavaSearchOperation implements IRunnableWithProgress {

    private IMonitorModelBase[] fModels;
    private boolean fAdd;

    public JavaSearchOperation(IMonitorModelBase[] models, boolean add) {

From source file com.siteview.mde.internal.ui.wizards.product.BaseManifestOperation.java

public abstract class BaseManifestOperation implements IRunnableWithProgress {

    private Shell fShell;
    protected String fPluginId;

    public BaseManifestOperation(Shell shell, String pluginId) {

From source file com.toubassi.filebunker.ui.backup.PerformBackup.java

/**
 * PerformBackup is a class responsible for performing the main backup
 * function.  It backs up the files as directed in a BackupSpecification
 * and has three main phases:
 * 
 *   1. Perform an estimate of the backup operation.

From source file com.toubassi.filebunker.ui.restore.PerformRestore.java

/**
 * @author garrick
 */
public class PerformRestore implements IRunnableWithProgress {
    private Vault vault;
    private RestoreSpecification spec;