Statistics
| Revision:

root / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / project / documents / table / gui / TableModel.java @ 7738

History | View | Annotate | Download (5.5 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
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
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41
package com.iver.cit.gvsig.project.documents.table.gui;
42

    
43

    
44
import java.util.BitSet;
45

    
46
import javax.swing.table.AbstractTableModel;
47

    
48
import com.hardcode.driverManager.DriverLoadException;
49
import com.hardcode.gdbms.engine.data.driver.DriverException;
50
import com.iver.andami.PluginServices;
51
import com.iver.andami.messages.NotificationManager;
52
import com.iver.cit.gvsig.fmap.edition.IEditableSource;
53
import com.iver.cit.gvsig.project.documents.table.ProjectTable;
54

    
55

    
56
/**
57
 * Modelo para la JTable de MapProperties
58
 *
59
 * @author Fernando Gonz?lez Cort?s
60
 */
61
public class TableModel extends AbstractTableModel {
62
    private BitSet visibles = new BitSet();
63
    private String[] alias;
64
    private ProjectTable table;
65

    
66
    /**
67
     * Creates a new MyTableModel object.
68
     *
69
     * @param t Tabla del proyecto que se quiere mostrar
70
     * @throws DriverException
71
     */
72
    public TableModel(ProjectTable t) throws DriverException {
73
        IEditableSource ds = t.getOriginal();
74
        if (ds == null) {
75
            ds = t.getModelo();
76
        }
77
        alias = t.getAliases();
78
        int[] mapping = t.getMapping();
79
        visibles = new BitSet();
80
        for (int i = 0; i < mapping.length; i++) {
81
            visibles.set(mapping[i]);
82
        }
83

    
84
        table = t;
85
    }
86

    
87
    /**
88
     * @see javax.swing.table.TableModel#getColumnCount()
89
     */
90
    public int getColumnCount() {
91
        return 3;
92
    }
93

    
94
    /* (non-Javadoc)
95
     * @see javax.swing.table.TableModel#getRowCount()
96
     */
97
    public int getRowCount() {
98
       try {
99
                return table.getModelo().getRecordset().getFieldCount();
100
            } catch (DriverException e) {
101
                NotificationManager.addError("No se pudo leer la informaci?n de la tabla", e);
102
                return 0;
103
            } catch (DriverLoadException e) {
104
                    NotificationManager.addError("No se pudo leer la informaci?n de la tabla", e);
105
                        return 0;
106
                }
107
    }
108

    
109
    /* (non-Javadoc)
110
     * @see javax.swing.table.TableModel#getValueAt(int, int)
111
     */
112
    public Object getValueAt(int rowIndex, int columnIndex) {
113
        if (columnIndex == 0) {
114
            return new Boolean(visibles.get(rowIndex));
115
        } else if (columnIndex == 1) {
116
                try {
117
                return table.getModelo().getRecordset().getFieldName(rowIndex);
118
            } catch (DriverException e) {
119
                NotificationManager.addError("Error accediendo al nombre del campo", e);
120
                return "error!";
121
            } catch (DriverLoadException e) {
122
                     NotificationManager.addError("Error accediendo al nombre del campo", e);
123
                 return "error!";
124
                        }
125
        } else {
126
                // rowIndex++;
127
                return alias[rowIndex];
128
        }
129
    }
130

    
131
    /* (non-Javadoc)
132
     * @see javax.swing.table.TableModel#getColumnClass(int)
133
     */
134
    public Class getColumnClass(int columnIndex) {
135
        if (columnIndex == 0) {
136
            return Boolean.class;
137
        }
138

    
139
        return String.class;
140
    }
141

    
142
    /* (non-Javadoc)
143
     * @see javax.swing.table.TableModel#isCellEditable(int, int)
144
     */
145
    public boolean isCellEditable(int rowIndex, int columnIndex) {
146
        return (columnIndex != 1);
147
    }
148

    
149
    /* (non-Javadoc)
150
     * @see javax.swing.table.TableModel#setValueAt(java.lang.Object, int, int)
151
     */
152
    public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
153
        if (columnIndex == 0) {
154
            visibles.set(rowIndex, ((Boolean) aValue).booleanValue());
155
        } else {
156
            alias[rowIndex] = aValue.toString();
157
        }
158
    }
159

    
160
    /* (non-Javadoc)
161
     * @see javax.swing.table.TableModel#getColumnName(int)
162
     */
163
    public String getColumnName(int column) {
164
        String ret = null;
165

    
166
        switch (column) {
167
        case 0:
168
            ret = PluginServices.getText(this, "visible");
169

    
170
            break;
171

    
172
        case 1:
173
            ret = PluginServices.getText(this, "campo");
174

    
175
            break;
176

    
177
        case 2:
178
            ret = PluginServices.getText(this, "alias");
179

    
180
            break;
181
        }
182

    
183
        return ret;
184
    }
185

    
186
    public String[] getAliases() {
187
        // return table.getAliases();
188
            return alias;
189
    }
190

    
191
    public int[] getFieldMapping() {
192
        int[] mapping = new int[visibles.cardinality()];
193
        int index = 0;
194
        for(int i=visibles.nextSetBit(0); i>=0; i=visibles.nextSetBit(i+1)) {
195
            mapping[index] = i;
196
            index++;
197
        }
198

    
199
        return mapping;
200
    }
201
}