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.core; /*w ww . j a va2 s. c o m*/ public class ImagePreferences { private int _targetWidth; private int _targetHeight; private boolean _useExactTargetSize; public ImagePreferences(int targetWidth_, int targetHeight_, boolean useExactTargetSize_){ _targetWidth = targetWidth_; _targetHeight = targetHeight_; _useExactTargetSize = useExactTargetSize_; } public int getTargetWidth(){ return _targetWidth; } public int getTargetHeight(){ return _targetHeight; } public boolean shouldUseExactTargetSize(){ return _useExactTargetSize; } }