Back to project page jsonxmlcompare.
The source code is released under:
Apache License
If you think the Android project jsonxmlcompare 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.davidtpate.speedtest.model; //from w ww .ja va 2s . c o m import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class PostParent { @SerializedName("data") @Expose private Post mPost; public PostParent(Post mPost) { this.mPost = mPost; } public Post getPost() { return mPost; } }