Android Open Source - timeflash Flash Card Entry






From Project

Back to project page timeflash.

License

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.

Java Source Code

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;
  }
}




Java Source Code List

com.derlethtully.timeflash.AddVocabActivity.java
com.derlethtully.timeflash.EditListActivity.java
com.derlethtully.timeflash.FilePickerActivity.java
com.derlethtully.timeflash.FlashCardActivity.java
com.derlethtully.timeflash.FlashCardEntry.java
com.derlethtully.timeflash.SetTimeFrameActivity.java
com.derlethtully.timeflash.TimeFlashActivity.java