01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2002-2006, GeoTools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: */
16: package org.geotools.data.store;
17:
18: import java.io.IOException;
19: import java.util.Set;
20: import org.opengis.filter.Filter;
21: import org.geotools.data.FeatureReader;
22: import org.geotools.data.FeatureStore;
23: import org.geotools.feature.AttributeType;
24: import org.geotools.feature.FeatureCollection;
25:
26: public abstract class ContentFeatureStore extends ContentFeatureSource
27: implements FeatureStore {
28: public ContentFeatureStore(ContentEntry entry) {
29: super (entry);
30: }
31:
32: public Set addFeatures(FeatureCollection collection)
33: throws IOException {
34: // TODO Auto-generated method stub
35: return null;
36: }
37:
38: public void modifyFeatures(AttributeType[] type, Object[] value,
39: Filter filter) throws IOException {
40: // TODO Auto-generated method stub
41: }
42:
43: public void modifyFeatures(AttributeType type, Object value,
44: Filter filter) throws IOException {
45: // TODO Auto-generated method stub
46: }
47:
48: public void removeFeatures(Filter filter) throws IOException {
49: // TODO Auto-generated method stub
50: }
51:
52: public void setFeatures(FeatureReader reader) throws IOException {
53: // TODO Auto-generated method stub
54: }
55: }
|