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: package org.geotools.referencing;
18:
19: /**
20: * Defines static methods used to access the application's default {@linkplain Factory
21: * factory} implementation.
22: *
23: * @since 2.0
24: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/referencing/src/main/java/org/geotools/referencing/FactoryFinder.java $
25: * @version $Id: FactoryFinder.java 25824 2007-06-13 14:33:47Z desruisseaux $
26: * @author Martin Desruisseaux
27: *
28: * @deprecated Renamed as {@link ReferencingFactoryFinder}.
29: */
30: public final class FactoryFinder extends ReferencingFactoryFinder {
31: /*
32: * TODO: After we removed this class, make ReferencingFactoryFinder final
33: * and its constructor private.
34: */
35:
36: /**
37: * Do not allows any instantiation of this class.
38: */
39: private FactoryFinder() {
40: // singleton
41: }
42: }
|