01: /*
02: * Geotools2 - 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: */
17: package org.geotools.data.shapefile.shp.xml;
18:
19: import com.vividsolutions.jts.geom.Envelope;
20:
21: /**
22: * Bean of idinfo element of shp.xml.
23: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/plugin/shapefile/src/main/java/org/geotools/data/shapefile/shp/xml/IdInfo.java $
24: */
25: public class IdInfo {
26:
27: /** spdom/bounding represents */
28: Envelope bounding;
29:
30: /** spdom/lbounding represents */
31: Envelope lbounding;
32:
33: /**
34: * @return Returns the bounding.
35: */
36: public Envelope getBounding() {
37: return bounding;
38: }
39:
40: /**
41: * @param bounding The bounding to set.
42: */
43: public void setBounding(Envelope bounding) {
44: this .bounding = bounding;
45: }
46:
47: /**
48: * @return Returns the lbounding.
49: */
50: public Envelope getLbounding() {
51: return lbounding;
52: }
53:
54: /**
55: * @param lbounding The lbounding to set.
56: */
57: public void setLbounding(Envelope lbounding) {
58: this.lbounding = lbounding;
59: }
60: }
|