Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_dataDB / src / org / gvsig / data / datastores / vectorial / db / jdbc / postgresql / PostgresqlFeatureCollectionWithFeatureID.java @ 20973

History | View | Annotate | Download (987 Bytes)

1
package org.gvsig.data.datastores.vectorial.db.jdbc.postgresql;
2

    
3
import org.gvsig.data.ReadException;
4
import org.gvsig.data.datastores.vectorial.db.DBDataFeatureCollectionWithFeatureID;
5
import org.gvsig.data.datastores.vectorial.db.DBStore;
6
import org.gvsig.data.datastores.vectorial.db.jdbc.JDBCStore;
7
import org.gvsig.data.vectorial.FeatureManager;
8
import org.gvsig.data.vectorial.IFeatureCollection;
9
import org.gvsig.data.vectorial.IFeatureType;
10

    
11

    
12
public class PostgresqlFeatureCollectionWithFeatureID extends DBDataFeatureCollectionWithFeatureID {
13

    
14
        PostgresqlFeatureCollectionWithFeatureID(FeatureManager fm,JDBCStore store,IFeatureType type, String filter,String order) throws ReadException {
15
                init(fm, store, type, filter, order);
16
        }
17

    
18
        public IFeatureCollection newBaseDataFeatureCollection(DBStore store, IFeatureType featureType, String filter, String order) {
19
                return new PostgresqlFeatureCollection((DBStore)store,this.featureType,filter,order);
20
        }
21

    
22
}