blob: 2472538f2c82dd8d9936754ce836eb6458c68a1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package cgeo.geocaching.concurrent;
/**
* Basic class for Runnables added to ThreadPool.
*/
public abstract class Task implements Runnable {
private String name = null;
public Task(String name) {
this.name = name;
}
public String getName() {
return this.name;
}
}
|