Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.metadata.basic / org.gvsig.metadata.basic.swing / org.gvsig.metadata.swing.basic.impl / src / main / java / org / gvsig / metadata / swing / basic / impl / BasicMetadataSwingLibrary.java @ 40608

History | View | Annotate | Download (2.43 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2010 Infrastructures and Transports Department
4
 * of the Valencian Gobernment (CIT)
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 2
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
 */
22

    
23
/*
24
 * AUTHORS (In addition to CIT):
25
 * 2010 Institute of New Imaging Technologies (INIT): 
26
 *   http://www.init.uji.es
27
 * Geographic Information research group: 
28
 *   http://www.geoinfo.uji.es
29
 * Universitat Jaume I UJI, Spain
30
 */
31

    
32
package org.gvsig.metadata.swing.basic.impl;
33

    
34
import org.gvsig.metadata.MetadataLibrary;
35
import org.gvsig.metadata.swing.basic.api.MetadataSwingLibrary;
36
import org.gvsig.metadata.swing.basic.api.MetadataSwingLocator;
37
import org.gvsig.tools.ToolsLocator;
38
import org.gvsig.tools.i18n.I18nManager;
39
import org.gvsig.tools.library.AbstractLibrary;
40
import org.gvsig.tools.library.LibraryException;
41
import org.gvsig.tools.swing.api.ToolsSwingLibrary;
42

    
43
/**
44
 * 
45
 * @author gvSIG Team
46
 * @version $Id$
47
 *
48
 */
49
public class BasicMetadataSwingLibrary extends AbstractLibrary {
50
    
51
        public void doRegistration() {
52
                super.doRegistration();
53
                this.registerAsImplementationOf(MetadataSwingLibrary.class);
54
                require(ToolsSwingLibrary.class);
55
                require(MetadataLibrary.class);
56
    }
57
    
58
        protected void doInitialize() throws LibraryException {
59
                MetadataSwingLocator
60
                                .registerDefaultMetadataSwingManager(BasicMetadataSwingManager.class);
61

    
62
        I18nManager i18nManager = ToolsLocator.getI18nManager();
63

    
64
        i18nManager.addResourceFamily(
65
                                "org.gvsig.metadata.swing.basic.impl.i18n.text",
66
                                BasicMetadataSwingLibrary.class.getClassLoader(),
67
                                BasicMetadataSwingLibrary.class.getClass().getName());
68
        }
69

    
70
        protected void doPostInitialize() throws LibraryException {
71

    
72
        }
73

    
74
}