Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.framework / org.gvsig.andami / src / main / java / org / gvsig / andami / installer / translations / TranslationsInstallerFactory.java @ 41691

History | View | Annotate | Download (3.24 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
package org.gvsig.andami.installer.translations;
25

    
26
import java.io.File;
27
import org.gvsig.andami.PluginsLocator;
28
import org.gvsig.andami.PluginsManager;
29
import org.gvsig.installer.lib.api.InstallerLocator;
30
import org.gvsig.installer.lib.api.InstallerManager;
31
import org.gvsig.installer.lib.spi.InstallerProviderLocator;
32
import org.gvsig.tools.ToolsLocator;
33
import org.gvsig.tools.dynobject.DynClass;
34
import org.gvsig.tools.dynobject.DynObject;
35
import org.gvsig.tools.dynobject.DynObjectManager;
36
import org.gvsig.tools.service.spi.AbstractProviderFactory;
37
import org.gvsig.tools.service.spi.Provider;
38
import org.gvsig.tools.service.spi.ProviderManager;
39
import org.gvsig.tools.service.spi.ProviderServices;
40
import org.gvsig.tools.util.Callable;
41

    
42
public class TranslationsInstallerFactory extends
43
        AbstractProviderFactory {
44

    
45
    public static final String PROVIDER_NAME = "translations";
46
    public static final String PROVIDER_DESCRIPTION = "";
47

    
48
    private DynClass dynclass;
49

    
50
    @Override
51
    protected DynClass createParametersDynClass() {
52
        if ( dynclass == null ) {
53
            initialize();
54
        }
55
        return dynclass;
56
    }
57

    
58
    @Override
59
    protected Provider doCreate(DynObject parameters, ProviderServices services) {
60
        return new TranslationsInstaller(services);
61
    }
62

    
63
    public void initialize() {
64
        if ( dynclass == null ) {
65
            DynObjectManager dynObjectManager = ToolsLocator
66
                    .getDynObjectManager();
67
            dynclass = dynObjectManager.createDynClass(PROVIDER_NAME,
68
                    PROVIDER_DESCRIPTION);
69
            dynObjectManager.add(dynclass);
70
        }
71
    }
72

    
73
    public static class RegisterTranslationsInstaller implements Callable {
74

    
75
        public Object call() throws Exception {
76
            InstallerManager installerManager = InstallerLocator.getInstallerManager();
77
            ProviderManager providerManager = InstallerProviderLocator.getProviderManager();
78
            PluginsManager pluginsManager = PluginsLocator.getManager();
79
            
80
            providerManager.addProviderFactory(new TranslationsInstallerFactory());
81
            
82
            File f = new File(pluginsManager.getApplicationFolder(),"i18n");
83
            installerManager.setDefaultLocalAddonRepository(f,PROVIDER_NAME);
84
            
85
            return Boolean.TRUE;
86
        }
87
    }
88
}