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; //from www .ja v a 2 s. c o m /** * This interface is used for Term definition. * Term consists of: * <ul> * <li>word - word / term it self</li> * <li>description - word's description</li> * </ul> * * Example: * * <pre> * word: the beginning * description: That is, "the beginning of all things," before anything existed except God. * </pre> * */ public interface ITerm { /** * @return Word of given term. */ String getWord(); /** * Sets word of given term. * @param word */ void setWord(String word); /** * @return Description of given term. */ String getDescription(); /** * Sets description of given term. * @param description */ void setDescription(String description); }