A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / actions / WorkbenchRunnableAdapter.java
index bd68861..88a0d3e 100644 (file)
@@ -20,24 +20,26 @@ import org.eclipse.core.runtime.IProgressMonitor;
 import org.eclipse.core.runtime.OperationCanceledException;
 import org.eclipse.jface.operation.IRunnableWithProgress;
 
-
 /**
- * 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 apapted runnabled are cought and rethrown as a <code>InterruptedException</code>.
+ * 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 apapted runnabled are cought and rethrown as a
+ * <code>InterruptedException</code>.
  */
 public class WorkbenchRunnableAdapter implements IRunnableWithProgress {
-       
+
        private IWorkspaceRunnable fWorkspaceRunnable;
-       
+
        public WorkbenchRunnableAdapter(IWorkspaceRunnable runnable) {
-               fWorkspaceRunnable= runnable;
+               fWorkspaceRunnable = runnable;
        }
 
        /*
         * @see IRunnableWithProgress#run(IProgressMonitor)
         */
-       public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
+       public void run(IProgressMonitor monitor) throws InvocationTargetException,
+                       InterruptedException {
                try {
                        PHPeclipsePlugin.run(fWorkspaceRunnable, monitor);
                } catch (OperationCanceledException e) {
@@ -48,4 +50,3 @@ public class WorkbenchRunnableAdapter implements IRunnableWithProgress {
        }
 
 }
-