01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2004-2006, GeoTools Project Managment Committee (PMC)
05: * (C) 2004, Institut de Recherche pour le Développement
06: *
07: * This library is free software; you can redistribute it and/or
08: * modify it under the terms of the GNU Lesser General Public
09: * License as published by the Free Software Foundation;
10: * version 2.1 of the License.
11: *
12: * This library is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * This package contains documentation from OpenGIS specifications.
18: * OpenGIS consortium's work is fully acknowledged here.
19: */
20: package org.geotools.metadata.iso.quality;
21:
22: // OpenGIS direct dependencies
23: import org.opengis.metadata.quality.Result;
24: import org.opengis.metadata.quality.AbsoluteExternalPositionalAccuracy;
25:
26: /**
27: * Closeness of reported coordinate values to values accepted as or being true.
28: *
29: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/metadata/src/main/java/org/geotools/metadata/iso/quality/AbsoluteExternalPositionalAccuracyImpl.java $
30: * @version $Id: AbsoluteExternalPositionalAccuracyImpl.java 25175 2007-04-16 13:40:57Z desruisseaux $
31: * @author Martin Desruisseaux
32: * @author Touraïvane
33: *
34: * @since 2.1
35: */
36: public class AbsoluteExternalPositionalAccuracyImpl extends
37: PositionalAccuracyImpl implements
38: AbsoluteExternalPositionalAccuracy {
39: /**
40: * Serial number for interoperability with different versions.
41: */
42: private static final long serialVersionUID = 4116627805950579738L;
43:
44: /**
45: * Constructs an initially empty absolute external positional accuracy.
46: */
47: public AbsoluteExternalPositionalAccuracyImpl() {
48: }
49:
50: /**
51: * Creates an positional accuracy initialized to the given result.
52: */
53: public AbsoluteExternalPositionalAccuracyImpl(final Result result) {
54: super (result);
55: }
56:
57: /**
58: * Constructs a metadata entity initialized with the values from the specified metadata.
59: *
60: * @since 2.4
61: */
62: public AbsoluteExternalPositionalAccuracyImpl(
63: final AbsoluteExternalPositionalAccuracy source) {
64: super(source);
65: }
66: }
|