Android Open Source - wherewithal Saved Test






From Project

Back to project page wherewithal.

License

The source code is released under:

GNU General Public License

If you think the Android project wherewithal 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.curchod.dto;
/*from  w ww  .  ja  va  2s . c om*/
/**
* THis class is used to transfer data to and from the following xml format.
  *    <test_id></test_id>
  *    <test_name></test_name>
  *    <test_date></test_date>
  *    <test_type></test_type>
  *    <test_format></test_format>
  *    <creation_time></creation_time>
*/
public class SavedTest
{
  private String test_id;
  private String test_date;
  private String test_name;
  private String test_type;
  private String test_status;
  private String test_format;
  private String creation_time;
  private String score_time;
  private String test_score;

  // ----------------------------------- id
  public void setTestId(String _test_id)
  {
    this.test_id = _test_id;
  }
  
  public String getTestId()
  {
    return test_id;
  }
  
  // ----------------------------------- date
  public void setTestDate(String _test_date)
  {
    this.test_date = _test_date;
  }
  
  public String getTestDate()
  {
    return test_date;
  }  
  
  // ----------------------------------- name
  public void setTestName(String _test_name)
  {
    this.test_name = _test_name;
  }
  
  public String getTestName()
  {
    return test_name;
  }
  
  // ----------------------------------- type
  public void setTestType(String _test_type)
  {
    this.test_type = _test_type;
  }
  
  public String getTestType()
  {
    return test_type;
  }

  // ----------------------------------- status
  public void setTestStatus(String _test_status)
  {
    this.test_status = _test_status;
  }
  
  public String getTestStatus()
  {
    return test_status;
  }
  
  // ----------------------------------- format
  public void setTestFormat(String _test_format)
  {
    this.test_format = _test_format;
  }
  
  public String getTestFormat()
  {
    return test_format;
  }
  
  // ----------------------------------- creation time
  public void setCreationTime(String _creation_time)
  {
    this.creation_time = _creation_time;
  }
  
  public String getCreationTime()
  {
    return creation_time;
  }
  
  //------------------------------------ score time
  public String getScoreTime() 
  {
    return score_time;
  }

  public void setScoreTime(String score_time) 
  {
    this.score_time = score_time;
  }
  
  //------------------------------------ test_score
  public String getTestScore() 
  {
    return test_score;
  }

  public void setTestScore(String test_score) 
  {
    this.test_score = test_score;
  }
  
}




Java Source Code List

com.curchod.domartin.AsyncLoadGameFile.java
com.curchod.domartin.Constants.java
com.curchod.domartin.Filer.java
com.curchod.domartin.HouseDeck.java
com.curchod.domartin.IWantTo.java
com.curchod.domartin.MockNdefMessages.java
com.curchod.domartin.NfcUtils.java
com.curchod.domartin.RemoteCall.java
com.curchod.domartin.Sarray.java
com.curchod.domartin.Scoring.java
com.curchod.domartin.TagDescription.java
com.curchod.domartin.UtilityTo.java
com.curchod.dto.Card.java
com.curchod.dto.DeckCard.java
com.curchod.dto.GameWord.java
com.curchod.dto.Game.java
com.curchod.dto.PlayerInfo.java
com.curchod.dto.SavedTest.java
com.curchod.dto.SingleWordTestResult.java
com.curchod.dto.SingleWord.java
com.curchod.json.VocabularyDefinition.java
com.curchod.json.VocabularyLearningObject.java
com.curchod.wherewithal.AddPlayerActivity.java
com.curchod.wherewithal.CardDeckActivity.java
com.curchod.wherewithal.CardDecksActivity.java
com.curchod.wherewithal.CardPlayerHouseDeckActivity.java
com.curchod.wherewithal.CardPlayerWordsActivity.java
com.curchod.wherewithal.CardPlayersListActivity.java
com.curchod.wherewithal.CardsActivity.java
com.curchod.wherewithal.GameConcentrationActivity.java
com.curchod.wherewithal.GameReadingStonesActivity.java
com.curchod.wherewithal.GameReadingStonesInstructionsActivity.java
com.curchod.wherewithal.GameSnazzyThumbworkActivity.java
com.curchod.wherewithal.GameWritingStonesActivity.java
com.curchod.wherewithal.GamesActivity.java
com.curchod.wherewithal.InstructionsActivity.java
com.curchod.wherewithal.MainActivity.java
com.curchod.wherewithal.PlayerActivity.java
com.curchod.wherewithal.PlayersActivity.java