Back to project page vocabulary-list.
The source code is released under:
Apache License
If you think the Android project vocabulary-list 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.rulych.vocabularylist.model; /* w ww. jav a2s . com*/ import android.text.TextUtils; public class Card { public String entry; public String pronunciation; public String translation; @Override public boolean equals(Object o) { if (!(o instanceof Card)) { return false; } Card otherCard = (Card) o; return TextUtils.equals(entry, otherCard.entry); } }