Back to project page helsinki-testbed2-android.
The source code is released under:
GNU General Public License
If you think the Android project helsinki-testbed2-android 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 fi.testbed2.service; // www . ja v a 2s . c o m import android.graphics.Bitmap; import fi.testbed2.android.task.exception.DownloadTaskException; import fi.testbed2.domain.TestbedMapImage; /** * Service which provides downloaded Bitmap images * for testbed images. */ public interface BitmapService { public boolean bitmapIsDownloaded(TestbedMapImage image); public Bitmap downloadBitmap(TestbedMapImage image) throws DownloadTaskException; public Bitmap getBitmap(TestbedMapImage image); public void evictBitmap(TestbedMapImage image); public void evictAll(); }