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.criminalintent; import java.util.Date; import java.util.UUID; /*ww w. ja va2 s . co m*/ public class Crime { private UUID mId; private String mTitle; private Date mDate; private boolean mSolved; public Crime() { // Generate unique identifier mId = UUID.randomUUID(); mDate = new Date(); } public String getmTitle() { return mTitle; } public void setmTitle(String mTitle) { this.mTitle = mTitle; } public UUID getmId() { return mId; } public Date getDate() { return mDate; } public void setDate(Date date) { mDate = date; } public boolean isSolved() { return mSolved; } public void setSolved(boolean solved) { mSolved = solved; } }