diff org.eclipse.equinox.common/src/org/eclipse/core/runtime/IProgressMonitorWithBlocking.d @ 105:bbe49769ec18

...
author Frank Benoit <benoit@tionex.de>
date Sun, 08 Nov 2009 12:42:30 +0100
parents bc29606a740c
children
line wrap: on
line diff
--- a/org.eclipse.equinox.common/src/org/eclipse/core/runtime/IProgressMonitorWithBlocking.d	Sat May 02 11:27:24 2009 +0200
+++ b/org.eclipse.equinox.common/src/org/eclipse/core/runtime/IProgressMonitorWithBlocking.d	Sun Nov 08 12:42:30 2009 +0100
@@ -4,19 +4,19 @@
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- *
+ * 
  * Contributors:
  *     IBM - Initial API and implementation
- * Port to the D programming language:
- *     Frank Benoit <benoit@tionex.de>
  *******************************************************************************/
-module org.eclipse.core.runtime.IProgressMonitorWithBlocking;
-
-import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.core.runtime.IStatus;
+// Port to the D programming language:
+//     Frank Benoit <benoit@tionex.de>
+module org.eclipse.core.runtimeIProgressMonitorWithBlocking;
 
 import java.lang.all;
 
+import org.eclipse.core.runtimeIProgressMonitor; // packageimport
+import org.eclipse.core.runtimeIStatus; // packageimport
+
 /**
  * An extension to the IProgressMonitor interface for monitors that want to
  * support feedback when an activity is blocked due to concurrent activity in
@@ -48,7 +48,7 @@
      * the caller. If this blocking job is not known, this method will return a plain
      * informational <code>IStatus</code> object.
      * </p>
-     *
+     * 
      * @param reason an optional status object whose message describes the
      * reason why this operation is blocked, or <code>null</code> if this
      * information is not available.
@@ -60,7 +60,7 @@
      * Clears the blocked state of the running operation. If a running
      * operation ever calls <code>setBlocked</code>, it must eventually call
      * <code>clearBlocked</code> before the operation completes.
-     *
+     * 
      * @see #setBlocked(IStatus)
      */
     public void clearBlocked();