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

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

The newest version!
package ciir.umass.edu.utilities;

public abstract class WorkerThread implements Runnable {
    protected int start = -1;
    protected int end = -1;

    public void set(final int start, final int end) {
        this.start = start;
        this.end = end;
    }

    @Override
    public abstract WorkerThread clone();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy