Back to project page Instabackground.
The source code is released under:
Apache License
If you think the Android project Instabackground 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 es.expilu.instabackground.model; /*from w w w. ja va 2s . c om*/ import java.util.Date; public class CommentsData { private String id; private Date created_time; private String text; private From from; public String getId() { return id; } public void setId(String id) { this.id = id; } public Date getCreated_time() { return created_time; } public void setCreated_time(Date created_time) { this.created_time = created_time; } public String getText() { return text; } public void setText(String text) { this.text = text; } public From getFrom() { return from; } public void setFrom(From from) { this.from = from; } }