Back to project page BNR-Quiz.
The source code is released under:
MIT License
If you think the Android project BNR-Quiz 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 net.plastboks.bnr_quiz; //from w ww . jav a 2 s . com /** * Created by alex on 8/9/14. */ public class TrueFalse { private int question; private boolean trueQuestion; public TrueFalse(int q, boolean trueQ) { this.question = q; this.trueQuestion = trueQ; } public int getQuestion() { return question; } public void setQuestion(int question) { this.question = question; } public boolean isTrueQuestion() { return trueQuestion; } public void setTrueQuestion(boolean trueQuestion) { this.trueQuestion = trueQuestion; } }