Back to project page ion.
The source code is released under:
Apache License
If you think the Android project ion 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.koushikdutta.ion; //from w ww . j av a 2s . c o m import android.widget.ImageView; import com.koushikdutta.ion.bitmap.BitmapInfo; /** * Created by koush on 7/1/14. */ public class ImageViewBitmapInfo { Exception exception; public Exception getException() { return exception; } ImageView imageView; public ImageView getImageView() { return imageView; } BitmapInfo info; public BitmapInfo getBitmapInfo() { return info; } }