blob: 79a5975f77d9e48842ab84178ad32e8b8a27926a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package cgeo.geocaching.apps.cache;
import cgeo.geocaching.Geocache;
import cgeo.geocaching.R;
import cgeo.geocaching.enumerations.CacheType;
public class WhereYouGoApp extends AbstractGeneralApp {
public WhereYouGoApp() {
super(getString(R.string.cache_menu_whereyougo), R.id.cache_app_whereyougo, "menion.android.whereyougo");
}
@Override
public boolean isEnabled(Geocache cache) {
return cache.getType() == CacheType.WHERIGO;
}
}
|