aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/apps/cachelist/CacheListApp.java
blob: 8beb5e450a0749c466ceda457ca1e3a85aa15aff (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.Geocache;
import cgeo.geocaching.SearchResult;
import cgeo.geocaching.apps.App;

import android.app.Activity;

import java.util.List;

public interface CacheListApp extends App {

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

}