Back to project page tatoeba-offline-android.
The source code is released under:
GNU General Public License
If you think the Android project tatoeba-offline-android 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.tatoeba.searchsentences; /*from w w w .ja v a2 s. c om*/ /** * @author qdii This class represents a tatoeba sentence, which actually * contains more information than a sentence: namely a language a * creation date and other things. */ public class Sentence { public Sentence( int id, Language lang, String data ) { this.id = id; this.lang = lang; this.data = data; } public String data() { return data; } public Language language() { return lang; } public int getId() { return id; } private int id; private Language lang; private String data; }