blob: 84a5fc17dc33465158a8843179784a5b04764c14 (
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
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.gui.customcontrols;
import javax.swing.table.*;
/**
* Custom table model, that allows represent a boolean value with a check
* box.
*
* @author Yana Stamcheva
*/
public class BooleanToCheckTableModel extends DefaultTableModel {
private static final long serialVersionUID = 0L;
/*
* JTable uses this method to determine the default renderer/
* editor for each cell. If we didn't implement this method,
* then the first column in the wizard would contain text
* ("true"/"false"), rather than a check box.
*/
@Override
public Class<?> getColumnClass(int c) {
return getValueAt(0, c).getClass();
}
@Override
public boolean isCellEditable(int row, int col)
{
return (col < 1);
}
}
|