01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2007, 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: * This package contains documentation from OpenGIS specifications.
17: * OpenGIS consortium's work is fully acknowledged here.
18: */
19: package org.geotools.metadata.iso.quality;
20:
21: // OpenGIS dependencies
22: import org.opengis.metadata.quality.NonQuantitativeAttributeAccuracy;
23:
24: /**
25: * Accuracy of non-quantitative attributes.
26: *
27: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/metadata/src/main/java/org/geotools/metadata/iso/quality/NonQuantitativeAttributeAccuracyImpl.java $
28: * @version $Id: NonQuantitativeAttributeAccuracyImpl.java 25175 2007-04-16 13:40:57Z desruisseaux $
29: * @author Cory Horner
30: *
31: * @since 2.4
32: */
33: public class NonQuantitativeAttributeAccuracyImpl extends
34: ThematicAccuracyImpl implements
35: NonQuantitativeAttributeAccuracy {
36: /**
37: * Serial number for interoperability with different versions.
38: */
39: private static final long serialVersionUID = 2659617465862554345L;
40:
41: /**
42: * Constructs an initially empty non quantitative attribute correctness.
43: */
44: public NonQuantitativeAttributeAccuracyImpl() {
45: }
46:
47: /**
48: * Constructs a metadata entity initialized with the values from the specified metadata.
49: *
50: * @since 2.4
51: */
52: public NonQuantitativeAttributeAccuracyImpl(
53: final NonQuantitativeAttributeAccuracy source) {
54: super(source);
55: }
56: }
|