/[schmitzm]/branches/2.0-RC2/src/skrueger/geotools/StyledFeatureCollectionTableModel.java
ViewVC logotype

Annotation of /branches/2.0-RC2/src/skrueger/geotools/StyledFeatureCollectionTableModel.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 46 - (hide annotations)
Fri Apr 17 11:44:05 2009 UTC (15 years, 10 months ago) by mojays
Original Path: trunk/src/skrueger/geotools/StyledFeatureCollectionTableModel.java
File size: 600 byte(s)
new classes (CURRENTLY ONLY DUMMIES!!):
- FeatureTablePane.java
- FeatureCollectionTableModel.java
- StyledFeatureCollectionTableModel.java
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     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26