Back to project page timeflash.
The source code is released under:
Apache License
If you think the Android project timeflash 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.derlethtully.timeflash; /*from w ww .j a va 2 s. c om*/ import android.widget.Toast; public class FlashCardEntry { private String clue; private String answer; private long time; public FlashCardEntry(String clue, String answer, String time){ this.clue = clue; this.answer = answer; try{ this.time = Long.parseLong(time); }catch(NumberFormatException e){ } } public String getClue(){ return clue; } public String getAnswer(){ return answer; } public long getTime(){ return time; } }