aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/entities/ListItem.java
blob: fba37cc4ce1fa360099b05091e130e245641097d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package de.pixart.messenger.entities;

import android.content.Context;

import java.util.List;

import de.pixart.messenger.services.AvatarService;
import rocks.xmpp.addr.Jid;

public interface ListItem extends Comparable<ListItem>, AvatarService.Avatarable  {
    String getDisplayName();

    int getOffline();

    Jid getJid();

    List<Tag> getTags(Context context);

    final class Tag {
        private final String name;
        private final int color;
        private final int offline;

        public Tag(final String name, final int color, final int offline) {
            this.name = name;
            this.color = color;
            this.offline = offline;
        }

        public int getColor() {
            return this.color;
        }

        public String getName() {
            return this.name;
        }

        public int getOffline() {
            return this.offline;
        }
    }

    boolean match(Context context, final String needle);
}