package eu.siacs.conversations.entities; import android.content.Context; import java.util.List; import eu.siacs.conversations.services.AvatarService; import eu.siacs.conversations.xmpp.Jid; public interface ListItem extends Comparable, AvatarService.Avatarable { String getDisplayName(); Jid getJid(); List getTags(Context context); final class Tag { private final String name; private final int color; public Tag(final String name, final int color) { this.name = name; this.color = color; } public int getColor() { return this.color; } public String getName() { return this.name; } } boolean match(Context context, final String needle); }