blob: 90e22d15db221f54f696c682c6d4c767eede8a69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package cgeo.geocaching.loaders;
import cgeo.geocaching.SearchResult;
import cgeo.geocaching.Settings;
import cgeo.geocaching.cgData;
import cgeo.geocaching.enumerations.CacheType;
import cgeo.geocaching.geopoint.Geopoint;
import android.content.Context;
public class HistoryGeocacheListLoader extends AbstractSearchLoader {
private final Geopoint coords;
public HistoryGeocacheListLoader(Context context, Geopoint coords) {
super(context);
this.coords = coords;
}
@Override
public SearchResult runSearch() {
return cgData.getHistoryOfCaches(true, coords != null ? Settings.getCacheType() : CacheType.ALL);
}
}
|