blob: 64e2bfd6470c1870e005016ff48d41cb293dcd22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package cgeo.geocaching;
public class StoredList {
public static final int STANDARD_LIST_ID = 1;
public final int id;
public final String title;
public final int count;
public StoredList(int id, String title, int count) {
this.id = id;
this.title = title;
this.count = count;
}
public String getTitleAndCount() {
return title + " [" + count + "]";
}
}
|