Back to project page flashcards.
The source code is released under:
MIT License
If you think the Android project flashcards listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package edu.cmu.hcii.ssui.flashcards; /* w w w . jav a 2 s .c o m*/ public class Deck { private static final String TAG = Deck.class.getSimpleName(); public interface DeckMutator { void insertDeck(String name, String description); void deleteDeck(long id); void updateDeck(long id, String name, String description); } private long mId; private String mName; private String mDescription; public Deck(long id, String name, String description) { mId = id; mName = name; mDescription = description; } public long getId() { return mId; } public String getName() { return mName; } public String getDescription() { return mDescription; } }