Back to project page EasyVote.
The source code is released under:
Apache License
If you think the Android project EasyVote 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.llanox.mobile.easyvote.model; /* w w w.j a va 2s. c o m*/ import java.util.Date; public class AnswerQuestion { private String objectId; private User voter; private Question question; private String questionKey; private String comment; private String answer; private Date created; private Date updated; private int points; public String getObjectId() { return objectId; } public void setObjectId(String objectId) { this.objectId = objectId; } public String getAnswer() { return answer; } public void setAnswer(String answer) { this.answer = answer; } public int getPoints() { return points; } public void setPoints(int points) { this.points = points; } public String getQuestionKey() { return questionKey; } public void setQuestionKey(String questionKey) { this.questionKey = questionKey; } public User getVoter() { return voter; } public void setVoter(User voter) { this.voter = voter; } public Date getCreated() { return created; } public void setCreated(Date created) { this.created = created; } public Date getUpdated() { return updated; } public void setUpdated(Date updated) { this.updated = updated; } public Question getQuestion() { return question; } public void setQuestion(Question question) { this.question = question; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } }