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; /*from w w w .j a va 2 s . c o m*/ import java.util.Map; import android.os.Parcel; import android.os.Parcelable; import com.box.boxjavalibv2.dao.BoxEventCollection; public class BoxAndroidEventCollection extends BoxEventCollection implements Parcelable { public BoxAndroidEventCollection() { super(); } public BoxAndroidEventCollection(Parcel in) { super(new BoxParcel(in)); } /** * Copy constructor, this does deep copy for all the fields. * * @param obj */ public BoxAndroidEventCollection(BoxAndroidEventCollection obj) { super(obj); } /** * Copy constructor, this does deep copy for all the fields. * * @param obj */ public BoxAndroidEventCollection(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<BoxAndroidEventCollection> CREATOR = new Parcelable.Creator<BoxAndroidEventCollection>() { @Override public BoxAndroidEventCollection createFromParcel(Parcel source) { return new BoxAndroidEventCollection(source); } @Override public BoxAndroidEventCollection[] newArray(int size) { return new BoxAndroidEventCollection[size]; } }; }