Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.swing / org.gvsig.fmap.dal.swing.api / src / main / java / org / gvsig / fmap / dal / swing / featuretable / SimpleFeaturesTableModel.java @ 47818

History | View | Annotate | Download (1.97 KB)

1 45393 jjdelcerro
/*
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2020 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, see <https://www.gnu.org/licenses/>.
18
 *
19
 * For any additional information, do not hesitate to contact us
20
 * at info AT gvsig.com, or visit our website www.gvsig.com.
21
 */
22
package org.gvsig.fmap.dal.swing.featuretable;
23 44340 jjdelcerro
24
import java.util.List;
25 46050 omartinez
import java.util.Map;
26 45185 jjdelcerro
import javax.swing.JTable;
27 46050 omartinez
import javax.swing.table.TableCellRenderer;
28 45393 jjdelcerro
import javax.swing.table.TableModel;
29 47818 jjdelcerro
import org.gvsig.expressionevaluator.Expression;
30 44340 jjdelcerro
import org.gvsig.fmap.dal.feature.Feature;
31 45695 omartinez
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
32 45100 jjdelcerro
import org.gvsig.tools.dispose.Disposable;
33 44340 jjdelcerro
import org.gvsig.tools.util.UnmodifiableBasicList;
34
35
/**
36
 *
37 45393 jjdelcerro
 * @author gvSIG Team
38 44340 jjdelcerro
 */
39 45393 jjdelcerro
public interface SimpleFeaturesTableModel extends TableModel, Disposable, UnmodifiableBasicList<Feature> {
40 44340 jjdelcerro
41 45393 jjdelcerro
    public List<Feature> getFeatures();
42 44340 jjdelcerro
43 45393 jjdelcerro
    public boolean hasErrors();
44 45185 jjdelcerro
45 45393 jjdelcerro
    public void setCellRenderers(JTable table);
46
47 46050 omartinez
    public void setCellRenderers(JTable table, Map<String, TableCellRenderer> renderers);
48
49 45695 omartinez
    public FeatureAttributeDescriptor getFeatureDescriptor(int columnIndex);
50
51 45794 jjdelcerro
    public Feature getFeatureAt(int rowIndex);
52
53 47220 jjdelcerro
    public Object getValueAt(Feature feature, int columnIndex);
54
55 46447 jjdelcerro
    public List<String> getColumnNames();
56
57 47818 jjdelcerro
    public Expression getFeaturesFilter(int[] rows);
58
59 44340 jjdelcerro
}