Back to project page box-android-sdk-v2-master.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRI...
If you think the Android project box-android-sdk-v2-master 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.box.boxandroidlibv2.dao; // w ww .j a va2s .com import java.util.Map; import android.os.Parcel; import android.os.Parcelable; import com.box.boxjavalibv2.dao.BoxCollection; public class BoxAndroidCollection extends BoxCollection implements Parcelable { public BoxAndroidCollection() { super(); } private BoxAndroidCollection(Parcel in) { super(new BoxParcel(in)); } /** * Copy constructor, this does deep copy for all the fields. * * @param obj */ public BoxAndroidCollection(BoxAndroidCollection obj) { super(obj); } /** * Copy constructor, this does deep copy for all the fields. * * @param obj */ public BoxAndroidCollection(Map<String, Object> map) { super(map); } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel dest, int flags) { super.writeToParcel(new BoxParcel(dest), flags); } public static final Parcelable.Creator<BoxAndroidCollection> CREATOR = new Parcelable.Creator<BoxAndroidCollection>() { @Override public BoxAndroidCollection createFromParcel(Parcel source) { return new BoxAndroidCollection(source); } @Override public BoxAndroidCollection[] newArray(int size) { return new BoxAndroidCollection[size]; } }; }