Back to project page cube-sdk.
The source code is released under:
Apache License
If you think the Android project cube-sdk 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 in.srain.cube.image; /*ww w. j ava 2s .com*/ public class ImageReuseInfo { private String mIdentitySize; private String[] mReuseSize; public ImageReuseInfo(String identitySize, String[] reuseSize) { mIdentitySize = identitySize; mReuseSize = reuseSize; } public String getIdentitySize() { return mIdentitySize; } public String[] getReuseSizeList() { return mReuseSize; } }