01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2003-2006, Geotools Project Managment Committee (PMC)
05: * (C) 2001, 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; either
10: * version 2.1 of the License, or (at your option) any later version.
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: package org.geotools.resources.image;
18:
19: /**
20: * A set of utilities methods for the Grid Coverage package. Those methods are not really
21: * rigorous; must of them should be seen as temporary implementations.
22: *
23: * @since 2.2
24: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/coverage/src/main/java/org/geotools/resources/image/CoverageUtilities.java $
25: * @version $Id: CoverageUtilities.java 25421 2007-05-05 16:55:18Z desruisseaux $
26: * @author Martin Desruisseaux
27: * @author Simone Giannecchini
28: *
29: * @deprecated moved to {@link org.geotools.resources.coverage} package.
30: */
31: public final class CoverageUtilities extends
32: org.geotools.resources.coverage.CoverageUtilities {
33: /**
34: * Do not allows instantiation of this class.
35: */
36: private CoverageUtilities() {
37: }
38: }
|