Back to project page OBS-Translation-App.
The source code is released under:
MIT License
If you think the Android project OBS-Translation-App 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 org.door43.obs.mta.model; //w w w. ja va 2 s . c o m /** * ITranslation */ public interface ITranslation extends IPersistenceObject, IText { /** * @return IETF language tag/code of translation e.g. en??, ??, cs?? etc. */ String getLangCode(); /** * Sets language code for given translation * @param langCode */ void setLangCode(String langCode); /** * @return Translated text */ String getText(); /** * Sets translated text * @param translationText */ void setText(String translationText); }