1 /*
2 * XNap - A P2P framework and client.
3 *
4 * See the file AUTHORS for copyright information.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
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 //--- Constant(s) ---
34
35 //--- Data field(s) ---
36
37 private Channel channel;
38
39 //--- Constructor(s) ---
40
41 public ChatPeerTableModel(Channel channel)
42 {
43 this.channel = channel;
44 }
45
46 //--- Method(s) ---
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