01: package org.geotools.data.gml;
02:
03: import java.io.IOException;
04:
05: import org.geotools.data.store.AbstractFeatureSource2;
06: import org.geotools.feature.FeatureCollection;
07:
08: public class GMLFeatureSource extends AbstractFeatureSource2 {
09:
10: public GMLFeatureSource(GMLTypeEntry entry) {
11: super (entry);
12: }
13:
14: public FeatureCollection getFeatures() throws IOException {
15: return new GMLFeatureCollection((GMLTypeEntry) entry);
16: }
17: }
|