Statistics
| Revision:

root / trunk / libraries / libDataSourceDBBaseDrivers / src / org / gvsig / data / datastores / vectorial / db / jdbc / h2 / H2FeatureCollectionWithFeatureID.java @ 19975

History | View | Annotate | Download (948 Bytes)

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

    
3
import org.gvsig.data.datastores.vectorial.db.jdbc.AbstractJDBCDataFeatureCollectionWithFeatureID;
4
import org.gvsig.data.datastores.vectorial.db.jdbc.JDBCStore;
5
import org.gvsig.data.exception.ReadException;
6
import org.gvsig.data.vectorial.IFeatureCollection;
7
import org.gvsig.data.vectorial.IFeatureType;
8
import org.gvsig.data.vectorial.expansionadapter.FeatureManager;
9

    
10

    
11
public class H2FeatureCollectionWithFeatureID extends AbstractJDBCDataFeatureCollectionWithFeatureID {
12
        H2FeatureCollectionWithFeatureID(FeatureManager fm,H2Store store,IFeatureType type, String filter,String order) throws ReadException {
13
                init(fm, store, type,filter, order);
14
        }
15

    
16
        public IFeatureCollection newBaseDataFeatureCollection(JDBCStore store, IFeatureType featureType, String filter, String order) {
17
                return new H2FeatureCollection((H2Store)store,this.featureType,filter,order);
18
        }
19

    
20
}