Back to project page SIC.
The source code is released under:
MIT License
If you think the Android project SIC 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.sun.imageloader.memorizer.api; //from w ww . j av a 2 s .c om import java.util.concurrent.Callable; import java.util.concurrent.ConcurrentHashMap; import android.graphics.Bitmap; import com.sun.imageloader.computable.impl.Computable; import com.sun.imageloader.core.ImageKey; import com.sun.imageloader.core.ImageSettings; public class BitmapMemorizer extends AMemorizer<ImageSettings, Bitmap> { public BitmapMemorizer(Computable<ImageSettings, Bitmap> computable_, ConcurrentHashMap<Integer, ImageKey> viewKeyMap_) { super(computable_, viewKeyMap_); } @Override protected Callable<Bitmap> getCallable(ImageSettings computable_) { return null; } }