Back to project page Android-FactsGame.
The source code is released under:
Apache License
If you think the Android project Android-FactsGame 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 ie.iamshanedoyle.factsgame.models; /* w w w . j a v a2s. c o m*/ /** * Created by shane on 03/02/2014. */ public class Question { // Ireland is the capital of the World? private String mTitle; // False private boolean mIsTrue; // ireland private String mImageResId; public String getTitle() { return mTitle; } public void setTitle(String mTitle) { this.mTitle = mTitle; } public boolean isTrue() { return mIsTrue; } public void setIsTrue(boolean mIsTrue) { this.mIsTrue = mIsTrue; } public String getImageResId() { return mImageResId; } public void setImageResId(String mImageResId) { this.mImageResId = mImageResId; } }