Statistics
| Revision:

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

History | View | Annotate | Download (2.85 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.lib.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 {@link InstallerManager}
37
 * 
38
 * @see {@link Locator}
39
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
40
 */
41
public class InstallerLocator extends AbstractLocator {
42

    
43
        private static final String LOCATOR_NAME = "InstallerLocator";
44
        /**
45
         * InstallerManager name used by the locator to access the instance
46
         */
47
        public static final String INSTALLER_MANAGER_NAME = "InstallerManager";
48
        private static final String INSTALLER_MANAGER_DESCRIPTION = "InstallerManager of gvSIG";
49

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

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

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

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

    
85
        /**
86
         * Registers the Class implementing the {@link InstallerManager} interface.
87
         * 
88
         * @param clazz
89
         *            implementing the InstallerManager interface
90
         */
91
        public static void registerInstallerManager(
92
                        Class<? extends InstallerManager> clazz) {
93

    
94
                getInstance().register(INSTALLER_MANAGER_NAME,
95
                                INSTALLER_MANAGER_DESCRIPTION, clazz);
96
        }
97
}