Android Open Source - wherewithal Single Word






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   ww w. j  a  v a  2  s . c o m
/**
 * This object is based on the AllWordsTest object from Catechis.
 * The differences are:
 * id is called word_id, and was changed to String from a long.
 * We add the grand_test_index, or total number of tests for the user.
 * @author user
 *
 */
public class SingleWord
{
  // data kept on xml file
  private String text;
  private String definition;
  private String category;
  private String test_type;
  private String level;
  private int daily_test_index;
  private int grand_test_index;
  private String word_id;
  
  // users answers
  private String answer;
  
  public void setText(String _text)
  {
    text = _text;
  }
  
  public String getText()
  {
    return text;
  }  
  
  public void setDefinition(String _definition)
  {
    definition = _definition;
  }
  
  public String getDefinition()
  {
    return definition;
  }
  
  public void setCategory(String _category)
  {
    category = _category;
  }
  
  public String getCategory()
  {
    return category;
  }
  
  public void setTestType(String _test_type)
  {
    test_type = _test_type;
  }
  
  public String getTestType()
  {
    return test_type;
  }
  
  public String getLevel()
  {
    return level;
  }
  
  public void setLevel(String _level)
  {
    level = _level;
  }
  
  public void setAnswer(String _answer)
  {
    answer = _answer;
  }
  
  public String getAnswer()
  {
    return answer;
  }
  
  public void setGrandTestIndex(int _grand_test_index)
  {
    grand_test_index = _grand_test_index;
  }
  
  public int getGrandTestIndex()
  {
    return grand_test_index;
  }
  
  public void setDailyTestIndex(int _daily_test_index)
  {
    daily_test_index = _daily_test_index;
  }
  
  public int getDailyTestIndex()
  {
    return daily_test_index;
  }
  
  public void setWordId(String _word_id)
  {
    this.word_id = _word_id;
  }
  
  public String getWordId()
  {
    return this.word_id;
  }

}




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