Back to project page android.
The source code is released under:
Apache License
If you think the Android project 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 com.github.digin.android; /* www. j av a 2 s . co m*/ public class ImageCacheEntry { private String url; private String id; public ImageCacheEntry(String url, String id) { this.url = url; this.id = id; } public String getUrl() { return url; } public String getId() { return id; } }