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.n4js.ui.wizard.dependencies.RunnableSettingsFilesLocator.java

/**
 * Runnable collector of the workspace projects setting files.
 */
public class RunnableSettingsFilesLocator implements IRunnableWithProgress {
    private static final Logger LOGGER = Logger.getLogger(RunnableSettingsFilesLocator.class);
    private ProjectsSettingsFilesLocator files = null;

From source file org.eclipse.papyrus.infra.discovery.ui.internal.common.PrepareInstallProfileJob.java

/**
 * A job that configures a p2 {@link #getInstallAction() install action} for
 * installing one or more {@link ConnectorDescriptor connectors}. The bulk of
 * the installation work is done by p2; this class just sets up the p2
 * repository metadata and selects the appropriate features to install. After
 * running the job the {@link #getInstallAction() install action} must be run to

From source file org.eclipse.pde.internal.ua.ui.wizards.cheatsheet.CompCSCreationOperation.java

/**
 * CompCSCreationOperation
 */
public class CompCSCreationOperation extends BaseCSCreationOperation implements IRunnableWithProgress {

    /**

From source file org.eclipse.pde.internal.ui.correction.java.FindClassResolutionsOperation.java

/**
 * This Operation is used to find possible resolutions to an unresolved class reference in a plug-in project.
 * When it is run, it will pass any ExportPackageDescriptions which provide the package to the AbstractClassResolutionCollector.
 * The AbstractClassResolutionCollector is responsible for creating the appropriate resolutions.
 *
 */

From source file org.eclipse.pde.internal.ui.editor.actions.FormatOperation.java

public class FormatOperation implements IRunnableWithProgress {

    private Object[] fObjects;

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

From source file org.eclipse.pde.internal.ui.editor.plugin.CreateManifestOperation.java

public class CreateManifestOperation implements IRunnableWithProgress {

    private IPluginModelBase fModel;

    public CreateManifestOperation(IPluginModelBase model) {
        fModel = model;

From source file org.eclipse.pde.internal.ui.nls.GetNonExternalizedStringsOperation.java

public class GetNonExternalizedStringsOperation implements IRunnableWithProgress {

    private ISelection fSelection;
    private ArrayList<Object> fSelectedModels;
    private ModelChangeTable fModelChangeTable;
    private boolean fCanceled;

From source file org.eclipse.pde.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 org.eclipse.pde.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 org.eclipse.pde.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 {