01: package org.geotools.feature.iso.attribute;
02:
03: import org.geotools.feature.iso.AttributeImpl;
04: import org.opengis.feature.type.AttributeType;
05: import org.opengis.geometry.BoundingBox;
06:
07: public class BoundingBoxAttribute extends AttributeImpl implements
08: org.opengis.feature.simple.BoundingBoxAttribute {
09:
10: public BoundingBoxAttribute(BoundingBox content, AttributeType type) {
11: super (content, type, null);
12: }
13:
14: public BoundingBox getBoundingBox() {
15: return (BoundingBox) getValue();
16: }
17:
18: public void setBoundingBox(BoundingBox newValue) {
19: setValue(newValue);
20: }
21: }
|