Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.fmap.control / src / main / java / org / gvsig / fmap / mapcontrol / MapControlLocator.java @ 43913

History | View | Annotate | Download (3.33 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
package org.gvsig.fmap.mapcontrol;
26

    
27
import org.gvsig.propertypage.PropertiesPageManager;
28
import org.gvsig.tools.locator.AbstractLocator;
29
import org.gvsig.tools.locator.Locator;
30
import org.gvsig.tools.locator.LocatorException;
31
import org.gvsig.tools.util.ToolsUtilLocator;
32

    
33
/**
34
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera</a>
35
 */
36
public class MapControlLocator extends AbstractLocator {
37
        private static final String LOCATOR_NAME = "MapContolLocator";
38
        
39
        /**
40
         * MapControlManager name used by the locator to access the instance
41
         */
42
        public static final String MAPCONTROL_MANAGER_NAME = "MapControlManager";
43
        private static final String MAPCONTROL_MANAGER_DESCRIPTION = "MapControlManager of gvSIG";
44

    
45
        public static final String EDITING_NOTIFICATION_MANAGER_NAME = "EditingNotificationManager";
46
        private static final String EDITING_NOTIFICATION_MANAGER_DESCRIPTION = "EditingNotificationManager of gvSIG";
47

    
48
        public static final String PROPERTIES_PAGE_MANAGER_NAME = "PropertiesPageManager";
49
        private static final String PROPERTIES_PAGE_MANAGER_DESCRIPTION = "PropertiesPage manager of gvSIG";
50

    
51
        /**
52
         * Unique instance.
53
         */
54
        private static final MapControlLocator instance = new MapControlLocator();
55
        
56
        /* (non-Javadoc)
57
         * @see org.gvsig.tools.locator.Locator#getLocatorName()
58
         */
59
        public String getLocatorName() {
60
                return LOCATOR_NAME;
61
        }
62
        
63
        /**
64
         * Return a reference to {@link MapControlManager}.
65
         *
66
         * @return a reference to MapControlManager
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 MapControlManager getMapControlManager() throws LocatorException {
73
                return (MapControlManager) getInstance().get(MAPCONTROL_MANAGER_NAME);
74
        }
75
        
76
        /**
77
         * Return the singleton instance.
78
         *
79
         * @return the singleton instance
80
         */
81
        public static MapControlLocator getInstance() {
82
                return instance;
83
        }
84
        
85
        /**
86
         * Registers the Class implementing the {@link MapControlManager} interface.
87
         *
88
         * @param clazz
89
         *            implementing the MapControlManager interface
90
         */
91
        public static void registerMapControlManager(Class clazz) {
92
                getInstance().register(MAPCONTROL_MANAGER_NAME, 
93
                                MAPCONTROL_MANAGER_DESCRIPTION,
94
                                clazz);
95
        }
96
        
97
        public static PropertiesPageManager getPropertiesPageManager() {
98
            return ToolsUtilLocator.getPropertiesPageManager();
99
        }
100

    
101
}
102

    
103