Empty class with no method. Geotk/SIS has a different serialVersionUID
value.
Comments are copy-and-paste from GeoAPI javadoc. Rewriting the class from scratch produces
basically the same result, with a different comment for the constructor.
Command line:
svn cat -r24963 https://svn.osgeo.org/geotools/trunk/modules/library/metadata/src/main/java/org/geotools/metadata/iso/quality/NonQuantitativeAttributeAccuracyImpl.java
Revision 24963 |
---|
/*
* GeoTools - OpenSource mapping toolkit
* http://geotools.org
* (C) 2004-2006, GeoTools Project Managment Committee (PMC)
* (C) 2004, Institut de Recherche pour le D?veloppement
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* This package contains documentation from OpenGIS specifications.
* OpenGIS consortium's work is fully acknowledged here.
*/
package org.geotools.metadata.iso.quality;
// OpenGIS dependencies
import org.opengis.metadata.quality.NonQuantitativeAttributeAccuracy;
/**
* Accuracy of non-quantitative attributes.
*
* @source $URL: http://svn.geotools.org/geotools/trunk/gt/modules/library/metadata/src/main/java/org/geotools/metadata/iso/quality/NonQuantitativeAttributeAccuracyImpl.java $
* @version $Id: NonQuantitativeAttributeAccuracyImpl.java 20874 2006-08-07 10:00:01Z jgarnett $
* @author Cory Horner
*
* @since 2.4
*/
public class NonQuantitativeAttributeAccuracyImpl extends ThematicAccuracyImpl
implements NonQuantitativeAttributeAccuracy
{
/**
* Serial number for interoperability with different versions.
*/
private static final long serialVersionUID = -4976754662775709253L;
/**
* Constructs an initially empty non quantitative attribute correctness.
*/
public NonQuantitativeAttributeAccuracyImpl() {
}
} |