Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.installer / org.gvsig.installer.swing / org.gvsig.installer.swing.api / src / main / java / org / gvsig / installer / swing / api / SwingInstallerLocator.java @ 40560

History | View | Annotate | Download (2.97 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2010 {Prodevelop}   {Task}
27
 */
28

    
29
package org.gvsig.installer.swing.api;
30

    
31
import org.gvsig.tools.locator.AbstractLocator;
32
import org.gvsig.tools.locator.Locator;
33
import org.gvsig.tools.locator.LocatorException;
34

    
35
/**
36
 * This Locator provides the entry point for the gvSIG
37
 * {@link SwingInstallerManager}
38
 * 
39
 * @see Locator
40
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
41
 */
42
public class SwingInstallerLocator extends AbstractLocator {
43

    
44
        private static final String LOCATOR_NAME = "SwingInstallerLocator";
45
        /**
46
         * SwingInstallerManager name used by the locator to access the instance
47
         */
48
        public static final String SWING_INSTALLER_MANAGER_NAME = "SwingInstallerManager";
49
        private static final String SWING_INSTALLER_MANAGER_DESCRIPTION = "SwingInstallerManager of gvSIG";
50

    
51
        /**
52
         * Unique instance.
53
         */
54
        private static final SwingInstallerLocator instance = new SwingInstallerLocator();
55

    
56
        /**
57
         * @see Locator#getLocatorName()
58
         */
59
        public String getLocatorName() {
60
                return LOCATOR_NAME;
61
        }
62

    
63
        /**
64
         * Return a reference to {@link SwingInstallerManager}.
65
         * 
66
         * @return a reference to SwingInstallerManager
67
         * @throws LocatorException
68
         *             if there is no access to the class or the class cannot be
69
         *             instantiated
70
         * @see Locator#get(String)
71
         */
72
        public static SwingInstallerManager getSwingInstallerManager()
73
                        throws LocatorException {
74
                return (SwingInstallerManager) getInstance().get(
75
                                SWING_INSTALLER_MANAGER_NAME);
76
        }
77

    
78
        /**
79
         * Return the singleton instance.
80
         * 
81
         * @return the singleton instance
82
         */
83
        public static SwingInstallerLocator getInstance() {
84
                return instance;
85
        }
86

    
87
        /**
88
         * Registers the Class implementing the {@link SwingInstallerManager}
89
         * interface.
90
         * 
91
         * @param clazz
92
         *            implementing the SwingInstallerManager interface
93
         */
94
        public static void registerSwingInstallerManager(
95
                        Class<? extends SwingInstallerManager> clazz) {
96
                getInstance().register(SWING_INSTALLER_MANAGER_NAME,
97
                                SWING_INSTALLER_MANAGER_DESCRIPTION, clazz);
98
        }
99
}