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 ww. j a v a2s.c om import java.util.Date; public class Question { private String objectId; private String key; private User creator; private String content; private String[] answers; private Date created; private Date updated; public boolean active; public String getContent() { return content; } public void setContent(String content) { this.content = content; } public boolean isActive() { return active; } public void setActive(boolean active) { this.active = active; } public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getObjectId() { return objectId; } public void setObjectId(String objectId) { this.objectId = objectId; } 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 String[] getAnswers() { return answers; } public void setAnswers(String[] answers) { this.answers = answers; } public User getCreator() { return creator; } public void setCreator(User creator) { this.creator = creator; } }