01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) Copyright IBM Corporation, 2005. All rights reserved.
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: */
17: /*
18: * Created on May 16, 2005
19: *
20: * To change the template for this generated file go to
21: * Window>Preferences>Java>Code Generation>Code and Comments
22: */
23: package org.geotools.data.db2;
24:
25: import org.geotools.feature.FeatureType;
26:
27: /**
28: * DOCUMENT ME!
29: *
30: * @author davea To change the template for this generated type comment go to
31: * Window>Preferences>Java>Code Generation>Code and
32: * Comments
33: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/unsupported/db2/src/main/java/org/geotools/data/db2/DB2FeatureLocking.java $
34: */
35: public class DB2FeatureLocking extends DB2FeatureStore {
36: /**
37: * DOCUMENT ME!
38: *
39: * @param dataStore
40: * @param featureType
41: */
42: public DB2FeatureLocking(DB2DataStore dataStore,
43: FeatureType featureType) {
44: super (dataStore, featureType);
45:
46: // TODO Auto-generated constructor stub
47: }
48: }
|