Android Open Source - wherewithal Deck Card






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 w  w.j a v a 2 s.  c o  m

/**
 * This holds info about a reusable deck of NFC tag cards which can be setup previously
 * and then reused with new words for multiple games after registering the deck for a new game.
 * An individual card is associated with a word from a game.  The same id will then correspond
 * to the id in the cards.xml file.
 * The name is a combination of the type and the index.
 * The status is blank after a cards is first created, ready when it's id is written to a tag,
 * and used when it has been associated with a word.
 * index 1, type reading, name R1.
 * @author user
 *
 */
public class DeckCard 
{

  private String card_id;
  private String card_name;
  private int index;
  private String type;
  private String status;
  
  public DeckCard()
  {
    
  }
  
  //-- id
  public void setCardId(String _card_id)
  {
    card_id = _card_id;
  }
    
  public String getCardId()
  {
    return card_id;
  }
  
      //-- name
    public void setCardName(String _card_name)
    {
      card_name = _card_name;
    }
    
    public String getCardName()
    {
      return card_name;
    }
    
    //-- status
    public void setStatus(String _status)
    {
      this.status = _status;
    }
        
    public String getStatus()
    {
      return status;
    }
    
    //-- index
    public void setIndex(int _index)
    {
      index = _index;
    }
      
    public int getIndex()
    {
      return index;
    }
    
  
    public void setType(String _type)
    {
      this.type = _type;
    }
    
    public String getType()
    {
      return type;
    }
    
}




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