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
/*
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

    
24
import java.util.List;
25
import java.util.Map;
26
import javax.swing.JTable;
27
import javax.swing.table.TableCellRenderer;
28
import javax.swing.table.TableModel;
29
import org.gvsig.expressionevaluator.Expression;
30
import org.gvsig.fmap.dal.feature.Feature;
31
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
32
import org.gvsig.tools.dispose.Disposable;
33
import org.gvsig.tools.util.UnmodifiableBasicList;
34

    
35
/**
36
 *
37
 * @author gvSIG Team
38
 */
39
public interface SimpleFeaturesTableModel extends TableModel, Disposable, UnmodifiableBasicList<Feature> {
40

    
41
    public List<Feature> getFeatures();
42

    
43
    public boolean hasErrors();
44

    
45
    public void setCellRenderers(JTable table);
46
    
47
    public void setCellRenderers(JTable table, Map<String, TableCellRenderer> renderers);
48
    
49
    public FeatureAttributeDescriptor getFeatureDescriptor(int columnIndex);
50
    
51
    public Feature getFeatureAt(int rowIndex);
52
    
53
    public Object getValueAt(Feature feature, int columnIndex);
54
    
55
    public List<String> getColumnNames();
56
    
57
    public Expression getFeaturesFilter(int[] rows);
58
    
59
}