Back to project page ExampleChopping.
The source code is released under:
Apache License
If you think the Android project ExampleChopping 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.chopping.example.data; //w w w .jav a 2 s. co m import com.google.gson.annotations.SerializedName; import java.util.List; /** * Example data-set for Users */ public final class DOUsers { @SerializedName("users") private List<DOUser> mUserList; public DOUsers(List<DOUser> _userList) { mUserList = _userList; } public List<DOUser> getUserList() { return mUserList; } }