Back to project page 3DR-Services-Library.
The source code is released under:
Apache License
If you think the Android project 3DR-Services-Library 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.ox3dr.services.android.lib.drone.property; //from w ww .j a v a 2s . co m import android.os.Parcel; import android.os.Parcelable; /** * Created by fhuya on 10/28/14. */ public class VehicleMode implements Parcelable { private final int mode; private final int droneType; private final String label; public VehicleMode(int mode, int droneType, String label){ this.mode = mode; this.droneType = droneType; this.label = label; } public int getMode() { return mode; } public int getDroneType() { return droneType; } public String getLabel() { return label; } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeInt(this.mode); dest.writeInt(this.droneType); dest.writeString(this.label); } private VehicleMode(Parcel in) { this.mode = in.readInt(); this.droneType = in.readInt(); this.label = in.readString(); } public static final Parcelable.Creator<VehicleMode> CREATOR = new Parcelable.Creator<VehicleMode>() { public VehicleMode createFromParcel(Parcel source) { return new VehicleMode(source); } public VehicleMode[] newArray(int size) { return new VehicleMode[size]; } }; }