blob: a520b5530abfde81dd186adf83e94e1f9ce67109 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package cgeo.geocaching.maps.interfaces;
import android.graphics.drawable.Drawable;
/**
* Common functions of the provider-specific
* OverlayItem implementations
*/
public interface OverlayItemImpl {
public String getTitle();
public Drawable getMarker(int index);
public void setMarker(Drawable markerIn);
}
|