Back to project page WhatsUp.
The source code is released under:
GNU General Public License
If you think the Android project WhatsUp 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 nu.placebo.whatsup.model; //w ww . ja v a 2s .co m import java.util.Date; /** * Immutable class with information about one comment. */ public class Comment { private String author; private String commentText; private String title; private Date addedDate; public Comment(String author, String commentText, String title, Date addedDate) { this.author = author; this.commentText = commentText; this.title = title; this.addedDate = addedDate; } public String getAuthor() { return author; } public String getCommentText() { return commentText; } public String getTitle() { return title; } public Date getAddedDate() { return addedDate; } }