1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.xnap.gui.table;
21
22 import org.xnap.chat.Channel;
23 import org.xnap.peer.Peer;
24
25 /***
26 * Provides a table model for {@link Peer} objects in chat tables. The only
27 * difference between this class and {@link PeerTableModel} is that the
28 * {@link Channel} is queried for a prefix for each peer name.
29 */
30 public class ChatPeerTableModel extends PeerTableModel
31 {
32
33
34
35
36
37 private Channel channel;
38
39
40
41 public ChatPeerTableModel(Channel channel)
42 {
43 this.channel = channel;
44 }
45
46
47
48 /***
49 * Invoked when <code>peer</code> has changed.
50 * Invokes fireTableRowsUpdated().
51 */
52 public void changed(Peer peer)
53 {
54 int row = rows.indexOf(peer);
55 if (row != -1) {
56 fireTableRowsUpdated(row, row);
57 }
58 }
59
60 public Object get(int i, int j)
61 {
62 if (j == 0) {
63 Peer p = (Peer)rows.get(i);
64 return channel.getPrefix(p) + p.getName();
65 }
66
67 return super.get(i, j);
68 }
69
70 }
71
72