blob: 39e19638f386f6b0f3ce0e0099380616749a6fd2 (
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.R;
import cgeo.geocaching.Geocache;
import cgeo.geocaching.enumerations.CacheType;
public class WhereYouGoApp extends AbstractGeneralApp {
public WhereYouGoApp() {
super(getString(R.string.cache_menu_whereyougo), "menion.android.whereyougo");
}
@Override
public boolean isEnabled(Geocache cache) {
return cache.getType() == CacheType.WHERIGO;
}
}
|