Changes in this commit seem to be the result of some "auto reformat" tool execution. The Java - GeoAPI - GeoTools import ordering is altered, imports used only in Javadoc are lost and the encoding of non-ASCII characters is broken. This commit has been reverted, except for the removal of really unused imports which are kept removed.
Command line:
svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r10795:10796 https://svn.osgeo.org/geotools/trunk/modules/library/metadata/src/main/java/org/geotools/metadata/iso/identification/DataIdentificationImpl.java
Revision 10795 | Revision 10796 |
---|---|
/*
* Geotools 2 - OpenSource mapping toolkit
* (C) 2004, 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 |
/*
* Geotools 2 - OpenSource mapping toolkit
* (C) 2004, 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 |
package org.geotools.metadata.identification; // J2SE direct dependencies import java.util.Set; import java.util.Collections; import java.util.Locale; // OpenGIS direct dependencies // OpenGIS direct dependencies import org.opengis.metadata.extent.Extent; import org.opengis.metadata.extent.GeographicBoundingBox; import org.opengis.metadata.extent.GeographicDescription; import org.opengis.metadata.spatial.SpatialRepresentationType; import org.opengis.metadata.identification.TopicCategory; import org.opengis.metadata.identification.Resolution; import org.opengis.util.InternationalString; import org.opengis.metadata.citation.Citation; // Geotools dependencies import org.geotools.metadata.MetadataEntity; import org.geotools.resources.Utilities; import org.geotools.util.CheckedHashSet; /** * Information required to identify a dataset. * * @version $Id$ * @author Martin Desruisseaux * @author Touraïvane */ public class DataIdentification extends Identification implements org.opengis.metadata.identification.DataIdentification |
package org.geotools.metadata.identification; // J2SE direct dependencies import java.util.Collections; import java.util.Locale; import java.util.Set; import org.geotools.resources.Utilities; import org.geotools.util.CheckedHashSet; import org.opengis.metadata.citation.Citation; import org.opengis.metadata.extent.Extent; import org.opengis.metadata.extent.GeographicBoundingBox; import org.opengis.metadata.identification.Resolution; import org.opengis.metadata.identification.TopicCategory; import org.opengis.metadata.spatial.SpatialRepresentationType; import org.opengis.util.InternationalString; /** * Information required to identify a dataset. * * @version $Id$ * @author Martin Desruisseaux * @author Toura�vane */ public class DataIdentification extends Identification implements org.opengis.metadata.identification.DataIdentification |
private Set geographicDescription;
/**
* Description of the dataset in the producers processing environment, including items
* such as the software, the computer operating system, file name, and the dataset size
*/
private InternationalString environmentDescription; |
private Set geographicDescription;
/**
* Description of the dataset in the producer�s processing environment, including items
* such as the software, the computer operating system, file name, and the dataset size
*/
private InternationalString environmentDescription; |
}
/**
* Description of the dataset in the producers processing environment, including items
* such as the software, the computer operating system, file name, and the dataset size.
*/
public InternationalString getEnvironmentDescription() { |
}
/**
* Description of the dataset in the producer�s processing environment, including items
* such as the software, the computer operating system, file name, and the dataset size.
*/
public InternationalString getEnvironmentDescription() { |
}
/**
* Set the description of the dataset in the producers processing environment.
*/
public synchronized void setEnvironmentDescription(final InternationalString newValue) {
checkWritePermission(); |
}
/**
* Set the description of the dataset in the producer�s processing environment.
*/
public synchronized void setEnvironmentDescription(final InternationalString newValue) {
checkWritePermission(); |