Android Open Source - wherewithal Game 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;
/* w  w w .  j av  a  2s. c  o  m*/
/**
 * This class holds information similar to the catechis Word object, but with a test index, word type,
 * and the player id and card_id.  The word type will tell which word an item comes from.
 * Reading indicates that the text is the primary word.
 * Writing indicates that the definition is.
 * @author user
 *
 */
public class GameWord 
{

  public class Word
  {
    
    private String text;
    private String definition;
    private int writing_level;
    private int reading_level;
    private long date_of_entry;
    private long id;
    private String category;
    private boolean retired;
    
    private int index;
    private String word_type;
    private long player_id;
    private long card_id;
    
    public Word()
    {
    }
    
    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 setWritingLevel(int _writing_level)
    {
      writing_level = _writing_level;
    }
    
    public int getWritingLevel()
    {
      return writing_level;
    }  
    
    public void setReadingLevel(int _reading_level)
    {
      reading_level = _reading_level;
    }
    
    public int getReadingLevel()
    {
      return reading_level;
    }
    
    public void setDateOfEntry(long time)
    {
      this.date_of_entry = time;
    }
    
    public long getDateOfEntry()
    {
      return this.date_of_entry;
    }
    
    public void setId(long _id)
    {
      this.id = _id;
    }
    
    public long getId()
    {
      return this.id;
    }
    
    
    public void setCategory(String _category)
    {
      category = _category;
    }
    
    public String getCategory()
    {
      return category;
    }
    
    public void setRetired(boolean _retired)
    {
      this.retired = _retired;
    }
    
    public boolean getRetired()
    {
      return this.retired;
    }
    
    // --index
    public void setIndex(int _index)
    {
      this.index = _index;
    }
    
    public int getIndex()
    {
      return this.index;
    }
    
    
    //--word_type;
    public void setWordType(String _word_type)
    {
      this.word_type = _word_type;
    }
    
    public String getWordType()
    {
      return this.word_type;
    }
    
    //--player_id
    public void setPlayerId(long _player_id)
    {
      this.player_id = _player_id;
    }
    
    public long getPlayerId()
    {
      return this.player_id;
    }
    
    //--card_id
    public void setCardId(long _card_id)
    {
      this.card_id = _card_id;
    }
    
    public long getCardId()
    {
      return this.card_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