Back to project page GeoQuiz.
The source code is released under:
Apache License
If you think the Android project GeoQuiz 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 geoquiz.android.bignerdranch.com.geoquiz; //from w w w . j a va2 s .c om /** * Created by miguel on 1/01/15. */ public class TrueFalse { private int mQuestion; private boolean mTrueQuestion; public TrueFalse(int question, boolean trueQuestion){ mQuestion = question; mTrueQuestion = trueQuestion; } public int getQuestion() { return mQuestion; } public void setQuestion(int mQuestion) { this.mQuestion = mQuestion; } public boolean isTrueQuestion() { return mTrueQuestion; } public void setTrueQuestion(boolean mTrueQuestion) { this.mTrueQuestion = mTrueQuestion; } }