-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBooleanEditor.java
executable file
·38 lines (35 loc) · 1.06 KB
/
BooleanEditor.java
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
/** îáúåêò, êîòîðûé ïðåäñòàâëÿåò èç ñåáÿ ðåäàêòîð äëÿ ïîëÿ JCheckBox */
class BooleanEditor extends AbstractCellEditor implements TableCellEditor{
private static final long serialVersionUID=1L;
private JCheckBox checkBox=new JCheckBox();
{
this.checkBox.setHorizontalAlignment(SwingConstants.CENTER);
this.checkBox.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
onButtonClicked();
}
});
}
/** áûëà íàæàòà êíîïêà âûáîðà - îñòàíîâèòü ðåäàêòèðîâàíèå */
private void onButtonClicked(){
this.stopCellEditing();
}
@Override
public Component getTableCellEditorComponent(JTable table,
Object value,
boolean isSelected,
int row,
int column) {
if(value instanceof Boolean){
this.checkBox.setSelected((Boolean)value);
return this.checkBox;
}else{
System.err.println("Boolean Editor is not for 'null' values");
return null;
}
}
@Override
public Object getCellEditorValue() {
return this.checkBox.isSelected();
}
}