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; /* w ww . j av a2 s . co m*/ import java.util.List; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class Posts { @SerializedName("children") @Expose private List<PostParent> mPosts; public List<PostParent> getPosts() { return mPosts; } }