blob: db9fbc374f6882863041f9dc69c1984afc125f1c (
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
|
package eu.siacs.conversations.entities;
import java.util.List;
import eu.siacs.conversations.xmpp.jid.Jid;
public interface ListItem extends Comparable<ListItem> {
public String getDisplayName();
public Jid getJid();
public List<Tag> getTags();
public final class Tag {
private String name;
private int color;
public Tag(String name, int color) {
this.name = name;
this.color = color;
}
public int getColor() {
return this.color;
}
public String getName() {
return this.name;
}
}
}
|