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 ilg.gnumcueclipse.packs.jobs.ParsePdscRunnable.java

public class ParsePdscRunnable implements IRunnableWithProgress {

    private static boolean fgRunning = false;

    private MessageConsoleStream fgOut;
    private PackNode fgVersionNode;

From source file jp.co.dgic.eclipse.jdt.internal.coverage.report.html.HtmlReportExportProcess.java

public class HtmlReportExportProcess implements IRunnableWithProgress {

    private String[] args;

    public HtmlReportExportProcess(String[] args) {
        this.args = args;

From source file lost.tok.export.SourceExportOperation.java

/**
 * Operation for exporting a resource and its children to a new .zip or .tar.gz
 * file.
 * 
 * @since 3.1
 */

From source file melnorme.lang.ide.core.utils.CoreOperationAdapter.java

public abstract class CoreOperationAdapter implements IRunnableWithProgress {

    @Override
    public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
        try {
            coreRun(monitor);

From source file melnorme.lang.ide.core.utils.operation.CoreOperationRunnable.java

@FunctionalInterface
public interface CoreOperationRunnable extends IRunnableWithProgress {

    public abstract void doRun(IProgressMonitor pm) throws CommonException, CoreException, OperationCancellation;

    @Override

From source file melnorme.lang.ide.ui.actions.OperationRunnableWithProgress.java

public abstract class OperationRunnableWithProgress implements IRunnableWithProgress {

    protected volatile Exception exceptionResult;

    public void runUnderWorkbenchProgressService() throws OperationCancellation, CoreException {
        IProgressService progressService = PlatformUI.getWorkbench().getProgressService();

From source file melnorme.lang.ide.ui.utils.operations.OperationRunnableWithProgress.java

public abstract class OperationRunnableWithProgress implements IRunnableWithProgress {

    protected volatile Exception exceptionResult;

    public void runUnderWorkbenchProgressService() throws OperationCancellation, CoreException {
        IProgressService progressService = PlatformUI.getWorkbench().getProgressService();

From source file melnorme.lang.ide.ui.utils.ProgressRunnableWithResult.java

public abstract class ProgressRunnableWithResult<R> implements IRunnableWithProgress {

    public volatile R result;

    @Override
    public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {

From source file net.geoprism.oda.driver.ui.editors.MetadataRetriverRunnable.java

public class MetadataRetriverRunnable implements IRunnableWithProgress {
    private IConnection conn;

    private String queryText;

    private IResultSetMetaData queryMetadata;

From source file net.openchrom.chromatogram.msd.identifier.supplier.cdk.ui.internal.handlers.CalculateSmilesChromatogramRunnable.java

public class CalculateSmilesChromatogramRunnable implements IRunnableWithProgress {

    private static final String IDENTIFIER_ID = "net.openchrom.chromatogram.msd.identifier.supplier.cdk";
    //
    private IChromatogramSelectionMSD chromatogramSelection;