Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.i18n.app / org.gvsig.i18n.app.mainplugin / src / main / java / org / gvsig / i18n / extension / preferences / table / RadioButtonCellEditor.java @ 40557

History | View | Annotate | Download (2.43 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2008 {DiSiD Technologies}  {New extension for installation and update of text translations}
27
 */
28
package org.gvsig.i18n.extension.preferences.table;
29

    
30
import java.awt.Component;
31
import java.awt.event.ActionEvent;
32
import java.awt.event.ItemEvent;
33
import java.awt.event.ItemListener;
34

    
35
import javax.swing.AbstractCellEditor;
36
import javax.swing.JTable;
37
import javax.swing.table.TableCellEditor;
38

    
39
/**
40
 * Allows to edit a cell content with a Radio button.
41
 * 
42
 * @author <a href="mailto:cordin@disid.com">C?sar Ordi?ana</a>
43
 */
44
public class RadioButtonCellEditor extends AbstractCellEditor implements
45
        TableCellEditor, ItemListener {
46

    
47
    private static final long serialVersionUID = 1000179477526963659L;
48

    
49
    private RadioButtonCell delegate = new RadioButtonCell();
50

    
51
    /**
52
     * Constructor.
53
     */
54
    public RadioButtonCellEditor() {
55
        delegate.getRadioButton().addItemListener(this);
56
    }
57

    
58
    public Object getCellEditorValue() {
59
        return Boolean.valueOf(delegate.getRadioButton().isSelected());
60
    }
61

    
62
    public Component getTableCellEditorComponent(JTable table, Object value,
63
            boolean isSelected, int row, int column) {
64
        return delegate.getTableCellComponent(table, value, isSelected,
65
                isSelected, row, column);
66
    }
67

    
68
    public void actionPerformed(ActionEvent e) {
69
        // Stop editing when the user clicks into the radio button,
70
        // so other cells get its rendering updated
71
        fireEditingStopped();
72
    }
73

    
74
    public void itemStateChanged(ItemEvent e) {
75
        fireEditingStopped();
76
    }
77

    
78
}