comparison org.eclipse.jface/src/org/eclipse/jface/operation/IThreadListener.d @ 19:52184e4b815c

no more direct tango.core.Thread. Rename JThread to java.lang.Thread.
author Frank Benoit <benoit@tionex.de>
date Wed, 18 Mar 2009 10:55:25 +0100
parents bc29606a740c
children
comparison
equal deleted inserted replaced
18:735224fcc45f 19:52184e4b815c
11 * Frank Benoit <benoit@tionex.de> 11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/ 12 *******************************************************************************/
13 module org.eclipse.jface.operation.IThreadListener; 13 module org.eclipse.jface.operation.IThreadListener;
14 14
15 import java.lang.all; 15 import java.lang.all;
16 import java.lang.JThread; 16 import java.lang.Thread;
17 17
18 /** 18 /**
19 * A thread listener is an object that is interested in receiving notifications 19 * A thread listener is an object that is interested in receiving notifications
20 * of thread changes. For example, a thread listener can be used to notify a 20 * of thread changes. For example, a thread listener can be used to notify a
21 * runnable of the thread that will execute it, allowing the runnable to transfer 21 * runnable of the thread that will execute it, allowing the runnable to transfer
27 /** 27 /**
28 * Notification that a thread change is occurring. 28 * Notification that a thread change is occurring.
29 * 29 *
30 * @param thread The new thread 30 * @param thread The new thread
31 */ 31 */
32 public void threadChange(JThread thread); 32 public void threadChange(Thread thread);
33 } 33 }