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 . j a va 2 s .com*/ import com.google.gson.annotations.SerializedName; /** * Example data-set for a User. */ public final class DOUser { @SerializedName("name") private String name; public DOUser(String _name) { name = _name; } public String getName() { return name; } }