Back to project page CartoCache.
The source code is released under:
Apache License
If you think the Android project CartoCache listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.codeandmagic.cartocache; // w ww . j a va2 s. c o m import java.util.Collection; /** * Created by evelyne24. */ public interface PlacesCache<P extends Place> { public Collection<P> get(QTile qTile); public void add(QTile qTile, Collection<P> places); public boolean isMultiLevelCache(); }