Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / org.gvsig.symbology.app / org.gvsig.symbology.app.symbolinstaller / src / main / java / org / gvsig / symbology / app / symbolinstaller / execution / SymbolInstallerExecutionProviderFactory.java @ 39617

History | View | Annotate | Download (2.19 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (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
package org.gvsig.symbology.app.symbolinstaller.execution;
24

    
25
import org.gvsig.tools.ToolsLocator;
26
import org.gvsig.tools.dynobject.DynClass;
27
import org.gvsig.tools.dynobject.DynObject;
28
import org.gvsig.tools.dynobject.DynObjectManager;
29
import org.gvsig.tools.service.spi.AbstractProviderFactory;
30
import org.gvsig.tools.service.spi.Provider;
31
import org.gvsig.tools.service.spi.ProviderServices;
32

    
33
public class SymbolInstallerExecutionProviderFactory extends
34
    AbstractProviderFactory {
35

    
36
    public static final String PROVIDER_NAME = "symbols";
37
    public static final String PROVIDER_DESCRIPTION = "";
38

    
39
    private DynClass dynclass;
40

    
41
    @Override
42
    protected DynClass createParametersDynClass() {
43
        if (dynclass == null) {
44
            initialize();
45
        }
46
        return dynclass;
47
    }
48

    
49
    @Override
50
    protected Provider doCreate(DynObject parameters, ProviderServices services) {
51
        return new SymbolInstallerExecutionProvider(services);
52
    }
53

    
54
    public void initialize() {
55
        if (dynclass == null) {
56
            DynObjectManager dynObjectManager =
57
                ToolsLocator.getDynObjectManager();
58
            dynclass =
59
                dynObjectManager.createDynClass(PROVIDER_NAME,
60
                    PROVIDER_DESCRIPTION);
61
            dynObjectManager.add(dynclass);
62
        }
63
    }
64

    
65
}