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.astra.ses.spell.gui.replay.commands.OpenReplayProcedureJob.java

public class OpenReplayProcedureJob implements IRunnableWithProgress {
    private String m_procedureId;
    private String m_asrunPath;
    public CommandResult result;
    private String m_instanceId;
    public String message;

From source file com.astra.ses.spell.gui.shared.commands.ClearSharedVariablesJob.java

public class ClearSharedVariablesJob implements IRunnableWithProgress {
    public CommandResult result;
    public String message;
    private ISharedScope m_scope;
    private List<SharedVariable> m_variables;

From source file com.astra.ses.spell.gui.shared.commands.RefreshSharedVariablesJob.java

public class RefreshSharedVariablesJob implements IRunnableWithProgress {
    public CommandResult result;
    public String message;
    private ISharedScope m_scope;

    public RefreshSharedVariablesJob(ISharedScope scope) {

From source file com.astra.ses.spell.gui.shared.commands.RemoveSharedScopeJob.java

public class RemoveSharedScopeJob implements IRunnableWithProgress {
    public CommandResult result;
    public String message;
    private String m_scope;

    public RemoveSharedScopeJob(String scope) {

From source file com.astra.ses.spell.gui.watchvariables.jobs.FormatVariableValueJob.java

/******************************************************************************
 * Update watched variables
 *****************************************************************************/
public class FormatVariableValueJob implements IRunnableWithProgress {
    private VariableData m_var;
    public CommandResult result;

From source file com.astra.ses.spell.gui.watchvariables.jobs.UpdateVariablesJob.java

/******************************************************************************
 * Update watched variables
 *****************************************************************************/
public class UpdateVariablesJob implements IRunnableWithProgress {
    private IVariableManager m_mgr;
    public CommandResult result;

From source file com.beck.ep.team.internal.ProjectFileList.java

public class ProjectFileList implements IRunnableWithProgress {
    IProject project;
    ArrayList<IFile> files;
    Map<File, String> jfiles;
    public static final Pattern ptn = Pattern.compile("[\r\n]+");

From source file com.bluexml.side.util.libs.eclipse.RunnableWithProgress.java

public abstract class RunnableWithProgress implements IRunnableWithProgress, RunnableWithState {
    protected STATE current = STATE.none;

    /* (non-Javadoc)
     * @see com.bluexml.side.util.libs.eclipse.RunnableWithState#getState()
     */

From source file com.byterefinery.rmbench.util.UIRunnableWithProgress.java

/**
 * This abstract class wrapps the code needed for creating a job using the 
 * ProgressMonitorService of eclipse.
 * 
 * 
 * 

From source file com.carrotgarden.eclipse.fileinstall.util.EclipseRunnable.java

/**
 * Wrapper for long running operations, provides a way to turn the operation into
 * different types of "runnables" that exist within eclipse.
 * 
 * @author Kris De Volder
 */