1 |
mojays |
46 |
package skrueger.geotools; |
2 |
|
|
|
3 |
|
|
import schmitzm.geotools.gui.FeatureCollectionTableModel; |
4 |
|
|
|
5 |
|
|
public class StyledFeatureCollectionTableModel extends FeatureCollectionTableModel { |
6 |
|
|
|
7 |
|
|
public StyledFeatureCollectionTableModel(StyledFeatureCollectionInterface map) { |
8 |
|
|
super(null); |
9 |
|
|
} |
10 |
|
|
|
11 |
|
|
public StyledFeatureCollectionTableModel(StyledFeatureSourceInterface map) { |
12 |
|
|
super(null); |
13 |
|
|
} |
14 |
|
|
|
15 |
|
|
public String[] createColumnNames() { |
16 |
|
|
return new String[0]; |
17 |
|
|
} |
18 |
|
|
|
19 |
|
|
public int getRowCount() { |
20 |
|
|
return 0; |
21 |
|
|
} |
22 |
|
|
|
23 |
|
|
public Object getValueAt(int row, int col) { |
24 |
|
|
return ""; |
25 |
|
|
} |
26 |
|
|
} |