Back to project page LearnByHeart.
The source code is released under:
Apache License
If you think the Android project LearnByHeart 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 com.mps.learn.pb.http; //from ww w . j a va 2s . c o m public class HttpConstant { public interface Phrasebook { public static final String KEY_HEADER = "header"; public static final String KEY_LANG_FROM = "langTranslatedFrom"; public static final String KEY_LANG_TO = "langTranslatedTo"; public static final String KEY_CATEGORY = "category"; public static final String KEY_SUM_CATEGORY = "subCategory"; public static final String KEY_UPDATED_AT = "updatedAt"; public static final String KEY_UPDATED_BY = "updatedBy"; } public interface Phrase { public static final String KEY_TITLE = "title"; public static final String KEY_IMAGE_URL = "imageUrl"; public static final String KEY_PHRASE_PB = "pbPhrase"; public static final String KEY_PHRASE_EN = "enPhrase"; } }