Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_daldb / src / org / gvsig / fmap / data / feature / db / jdbc / postgresql / PostgresqlFeatureCollectionWithFeatureID.java @ 24491

History | View | Annotate | Download (962 Bytes)

1
package org.gvsig.fmap.data.feature.db.jdbc.postgresql;
2

    
3
import org.gvsig.fmap.dal.exceptions.ReadException;
4
import org.gvsig.fmap.dal.feature.FeatureSet;
5
import org.gvsig.fmap.dal.feature.FeatureType;
6
import org.gvsig.fmap.dal.feature.impl.FeatureManager;
7
import org.gvsig.fmap.data.feature.db.DBDataFeatureCollectionWithFeatureID;
8
import org.gvsig.fmap.data.feature.db.DBStore;
9
import org.gvsig.fmap.data.feature.db.jdbc.JDBCStore;
10

    
11

    
12
public class PostgresqlFeatureCollectionWithFeatureID extends DBDataFeatureCollectionWithFeatureID {
13

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

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

    
22
}