File size: 577 Bytes
28b5ddf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
public class QuestionData {
	private String question;
	private String answer;
	private String feedback;

	public QuestionData() {
		this.question = "";
		this.feedback = "";
		this.answer = "";
	}

	public void setQuestion(String question) {
		this.question = question;
	}

	public void setFeedback(String feedback) {
		this.feedback = feedback;
	}

	public void setAnswer(String answer) {
		this.answer = answer;
	}

	public String getQuestion() {
		return question;
	}

	public String getFeedback() {
		return feedback;
	}

	public String getAnswer() {
		return answer;
	}
}