Experiments.java
743 Bytes
package com.bitstrips.imoji.models;
import android.os.Parcel;
import android.os.Parcelable;
import android.os.Parcelable.Creator;
import com.google.gson.Gson;
public class Experiments
implements Parcelable
{
public static final Parcelable.Creator<Experiments> CREATOR = new Parcelable.Creator() {};
protected Experiments(Parcel paramParcel) {}
public int describeContents()
{
return 0;
}
public String toString()
{
return new Gson().toJson(this);
}
public void writeToParcel(Parcel paramParcel, int paramInt) {}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/models/Experiments.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/