Back to project page Buddy-Android-SDK.
The source code is released under:
Apache License
If you think the Android project Buddy-Android-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 com.buddy.sdk.models; //w ww. ja v a2s . c om import android.location.Geocoder; import android.location.Location; import com.google.gson.JsonObject; import java.util.Date; /** * Created by shawn on 7/6/14. */ public class ModelBase { public String id; public Date created; public Date lastModified; public Location location; private JsonObject jsonObject; public void setJsonObject(JsonObject json) { jsonObject = json; } public JsonObject getJsonObject() { return jsonObject; } }