Back to project page reflect-app.
The source code is released under:
Apache License
If you think the Android project reflect-app 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.pontydysgu.data; //w w w . j ava 2 s. c o m public class Answer { private Long questionId; private String answerText; public Long getQuestionId() { return questionId; } public void setQuestionId(Long questionId) { this.questionId = questionId; } public String getAnswerText() { return answerText; } public void setAnswerText(String answerText) { this.answerText = answerText; } @Override public String toString() { return "Answer["+this.getAnswerText()+"]"; } }