blob: 8c06d7a8341bcbdbfb2a91751ac95d81d74d25c3 (
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.cgCache;
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(cgCache cache) {
return cache.getType() == CacheType.WHERIGO;
}
}
|