Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.swing / org.gvsig.tools.swing.impl / src / main / java / org / gvsig / tools / swing / impl / ToolsSwingDefaultImplLibrary.java @ 168

History | View | Annotate | Download (3.17 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
package org.gvsig.tools.swing.impl;
23

    
24
import org.gvsig.tools.dataTypes.DataTypes;
25
import org.gvsig.tools.library.AbstractLibrary;
26
import org.gvsig.tools.library.Library;
27
import org.gvsig.tools.library.LibraryException;
28
import org.gvsig.tools.service.spi.ServiceManager;
29
import org.gvsig.tools.swing.api.ToolsSwingLocator;
30
import org.gvsig.tools.swing.impl.dynobject.DefaultDynObjectSwingManager;
31
import org.gvsig.tools.swing.impl.dynobject.DefaultDynObjectSwingServiceManager;
32
import org.gvsig.tools.swing.impl.dynobject.DefaultJDynObjectComponentFactory;
33
import org.gvsig.tools.swing.impl.dynobject.dynfield.DefaultJNDynFieldComponentFactory;
34
import org.gvsig.tools.swing.impl.dynobject.dynfield.JDynObjectDynfieldComponentFactory;
35
import org.gvsig.tools.swing.impl.usability.DefaultUsabilitySwingManager;
36
import org.gvsig.tools.swing.spi.ToolsSwingServiceLocator;
37

    
38
/**
39
 * {@link Library} for the default tools swing implementation.
40
 * 
41
 * @author 2010- C?sar Ordi?ana - gvSIG team
42
 */
43
public class ToolsSwingDefaultImplLibrary extends AbstractLibrary {
44

    
45
    @Override
46
    protected void doInitialize() throws LibraryException {
47
        ToolsSwingLocator
48
                .registerDynObjectSwingManager(DefaultDynObjectSwingManager.class);
49
        ToolsSwingLocator
50
                .registerUsabilitySwingManager(DefaultUsabilitySwingManager.class);
51
        ToolsSwingServiceLocator
52
                .registerDynObjectServiceManager(DefaultDynObjectSwingServiceManager.class);
53
    }
54

    
55
    @Override
56
    protected void doPostInitialize() throws LibraryException {
57
        ServiceManager dsManager = ToolsSwingServiceLocator.getServiceManager();
58

    
59
        dsManager.addServiceFactory(new DefaultJDynObjectComponentFactory());
60
        dsManager.addServiceFactory(new DefaultJNDynFieldComponentFactory(DataTypes.LIST));
61
        dsManager.addServiceFactory(new JDynObjectDynfieldComponentFactory());
62
        
63
        // dsManager.addServiceFactory(new NumberFieldComponentFactory());
64
        // dsManager.addServiceFactory(new NumberFieldComponentFactory());
65
        // dsManager.addServiceFactory(new NumberFieldComponentFactory());
66

    
67
        // .registerDynFieldComponentFactory(numberFactory, DataTypes.INT);
68
        // dsManager.registerDynFieldComponentFactory(numberFactory,
69
        // DataTypes.LONG);
70
        // dsManager.registerDynFieldComponentFactory(numberFactory,
71
        // DataTypes.FLOAT);
72
        // dsManager.registerDynFieldComponentFactory(numberFactory,
73
        // DataTypes.DOUBLE);
74
    }
75
}