blob: 53636cdccd5fc948b5c4f37bc78236b61c8ca870 [file] [log] [blame]
package org.eclipse.e4.core.services;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
/**
* TODO Replace with IProgressRunnable from org.eclipse.equinox.concurrent.
*/
public interface IRunnableWithProgress {
public IStatus run(IProgressMonitor monitor);
}