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.util; // w w w .j a va2 s .c o m public class ArgUtil { public static final String ARG_DECK_ID = "deck_id"; public static final String ARG_DECK_NAME = "deck_name"; public static final String ARG_DECK_DESCRIPTION = "deck_description"; public static final String ARG_CARD_ID = "card_id"; public static final String ARG_CARD_FRONT = "card_front"; public static final String ARG_CARD_BACK = "card_back"; private ArgUtil() { // This utility class should not be instantiated. } }