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.computable.impl; import com.sun.imageloader.memorizer.api.InterruptedImageLoadException; public interface Computable<T,V> { public V compute(T valueToCompute) throws InterruptedImageLoadException; }