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.downloader.api; //from w w w . j av a 2 s .com import java.io.IOException; import java.io.InputStream; import java.net.URI; import java.net.URISyntaxException; public interface ImageRetriever { public InputStream getStream(URI imageUr_) throws URISyntaxException, IOException; }