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 dependencies
23: import org.opengis.metadata.quality.FormatConsistency;
24:
25: /**
26: * Degree to which data is stored in accordance with the physical structure of
27: * the dataset, as described by the scope.
28: *
29: * @since 2.4
30: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/metadata/src/main/java/org/geotools/metadata/iso/quality/FormatConsistencyImpl.java $
31: * @version $Id: FormatConsistencyImpl.java 25193 2007-04-18 13:37:38Z desruisseaux $
32: * @author Martin Desruisseaux
33: * @author Touraïvane
34: */
35: public class FormatConsistencyImpl extends LogicalConsistencyImpl
36: implements FormatConsistency {
37: /**
38: * Serial number for interoperability with different versions.
39: */
40: private static final long serialVersionUID = -1204766930140154729L;
41:
42: /**
43: * Constructs an initially empty formal consistency.
44: */
45: public FormatConsistencyImpl() {
46: }
47:
48: /**
49: * Constructs a metadata entity initialized with the values from the specified metadata.
50: *
51: * @since 2.4
52: */
53: public FormatConsistencyImpl(final FormatConsistency source) {
54: super(source);
55: }
56: }
|