aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/apps/cachelist/CacheListApp.java
blob: 519b394368ee9e761c160e7259ee701db49cffa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cgeo.geocaching.apps.cachelist;

import cgeo.geocaching.SearchResult;
import cgeo.geocaching.cgCache;
import cgeo.geocaching.apps.App;

import android.app.Activity;

import java.util.List;

interface CacheListApp extends App {

    boolean invoke(final List<cgCache> caches,
            final Activity activity, final SearchResult search);

}