Back to project page Dhamaschool.
The source code is released under:
Apache License
If you think the Android project Dhamaschool 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 group.ripple.dhamaschool; /*w w w . j ava2 s . com*/ /** * Created by YMT on 12/8/2014. */ public class NewsObj { private String id; private String updated; private String content; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getUpdated() { return updated; } public void setUpdated(String updated) { this.updated = updated; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } }