comparison org.eclipse.core.jobs/src/org/eclipse/core/runtime/jobs/IJobManager.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
22 import org.eclipse.core.runtime.jobs.Job; 22 import org.eclipse.core.runtime.jobs.Job;
23 import org.eclipse.core.runtime.jobs.ILock; 23 import org.eclipse.core.runtime.jobs.ILock;
24 import org.eclipse.core.runtime.jobs.LockListener; 24 import org.eclipse.core.runtime.jobs.LockListener;
25 25
26 import org.eclipse.core.runtime.jobs.ProgressProvider; 26 import org.eclipse.core.runtime.jobs.ProgressProvider;
27 import java.lang.JThread; 27 import java.lang.Thread;
28 28
29 /** 29 /**
30 * The job manager provides facilities for scheduling, querying, and maintaining jobs 30 * The job manager provides facilities for scheduling, querying, and maintaining jobs
31 * and locks. In particular, the job manager provides the following services: 31 * and locks. In particular, the job manager provides the following services:
32 * <ul> 32 * <ul>
406 * 406 *
407 * @param rule The scheduling rule to transfer 407 * @param rule The scheduling rule to transfer
408 * @param destinationThread The new owner for the transferred rule. 408 * @param destinationThread The new owner for the transferred rule.
409 * @since 3.1 409 * @since 3.1
410 */ 410 */
411 public void transferRule(ISchedulingRule rule, JThread destinationThread); 411 public void transferRule(ISchedulingRule rule, Thread destinationThread);
412 412
413 /** 413 /**
414 * Resumes scheduling of all sleeping jobs in the given family. This method 414 * Resumes scheduling of all sleeping jobs in the given family. This method
415 * has no effect on jobs in the family that are not currently sleeping. 415 * has no effect on jobs in the family that are not currently sleeping.
416 * 416 *