Back to project page big_nerd_ranch_book_progress.
The source code is released under:
GNU Lesser General Public License
If you think the Android project big_nerd_ranch_book_progress 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.bignerdranch.android.geoquiz; /*from w w w. j a va2 s . c om*/ public class TrueFalse { private int mQuestion; private boolean mTrueQuestion; public TrueFalse(int question, boolean trueQuestion) { mQuestion = question; mTrueQuestion = trueQuestion; } /** * @return the question */ public int getQuestion() { return mQuestion; } /** * @param question the question to set */ public void setQuestion(int question) { mQuestion = question; } /** * @return the trueQuestion */ public boolean isTrueQuestion() { return mTrueQuestion; } /** * @param trueQuestion the trueQuestion to set */ public void setTrueQuestion(boolean trueQuestion) { mTrueQuestion = trueQuestion; } }