List of usage examples for org.eclipse.jface.operation IRunnableWithProgress interface-usage
From source file de.jcup.egradle.eclipse.execution.validation.RootProjectValidationProgressRunnable.java
public class RootProjectValidationProgressRunnable implements IRunnableWithProgress { private GradleConfigurationValidator validator; private GradleConfiguration configuration; private OutputHandler outputHandler; private RootProjectValidationObserver observer;
From source file de.jcup.egradle.eclipse.ide.execution.GradleRunnableWithProgress.java
public class GradleRunnableWithProgress implements IRunnableWithProgress { private GradleExecutionDelegate execution; public GradleRunnableWithProgress(GradleExecutionDelegate execution) { notNull(execution, "'execution' may not be null"); this.execution = execution;
From source file de.jcup.egradle.eclipse.ide.execution.validation.RootProjectValidationProgressRunnable.java
public class RootProjectValidationProgressRunnable implements IRunnableWithProgress { private GradleConfigurationValidator validator; private GradleConfiguration configuration; private OutputHandler outputHandler; private RootProjectValidationObserver observer;
From source file de.quamoco.qm.editor.evaluation.ConQATRunnableBase.java
/**
* Base class for runnables to perform the ConQAT evaluation.
*
* @author herrmama
* @author $Author: lochmann $
* @version $Rev: 4974 $
From source file de.uni_jena.iaa.linktype.atomic.model.pepper.wizard.PepperModuleRunnable.java
public abstract class PepperModuleRunnable implements IRunnableWithProgress, Future<Boolean> { protected static final AtomicInteger threadCounter = new AtomicInteger(); protected final AbstractPepperWizard<? extends PepperModule> pepperWizard; protected final IProject project;
From source file de.walware.ecommons.debug.ui.HelpRequestor.java
/** * Shows the help for a command line tool in a dialog tray. */ public class HelpRequestor implements IRunnableWithProgress { private static class InfoTray extends DialogTray {
From source file demo.project.ExportTable.java
/** * @author Samuel Gratzl * */ public class ExportTable implements IRunnableWithProgress {
From source file demo.project.ProjectManager.java
/** * @author Samuel Gratzl * */ public class ProjectManager implements IRunnableWithProgress { private final boolean loadProject;
From source file descent.internal.corext.buildpath.ClasspathModifierOperation.java
/** * Abstract class which represents classpath modifier operation, this is, * Operation that call methods on <code>ClasspathModifier</code>. */ public abstract class ClasspathModifierOperation extends ClasspathModifier implements IRunnableWithProgress { protected IClasspathInformationProvider fInformationProvider;
From source file descent.internal.ui.actions.WorkbenchRunnableAdapter.java
/** * An <code>IRunnableWithProgress</code> that adapts and <code>IWorkspaceRunnable</code> * so that is can be executed inside <code>IRunnableContext</code>. <code>OperationCanceledException</code> * thrown by the adapted runnable are caught and re-thrown as a <code>InterruptedException</code>. */ public class WorkbenchRunnableAdapter implements IRunnableWithProgress, IThreadListener {