All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ciir.umass.edu.utilities.WorkerThread Maven / Gradle / Ivy

package ciir.umass.edu.utilities;

public abstract class WorkerThread implements Runnable {
	protected int start = -1;
	protected int end = -1;
	public void set(int start, int end)
	{
		this.start = start;
		this.end = end;
	}
	public abstract WorkerThread clone();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy