Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.swing / org.gvsig.fmap.dal.swing.impl / src / main / java / org / gvsig / fmap / dal / swing / impl / DefaultDALSwingLibrary.java @ 44154

History | View | Annotate | Download (4.29 KB)

1
/* gvSIG. Desktop Geographic Information System.
2
 *
3
 * Copyright ? 2007-2014 gvSIG Association
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18
 * MA  02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us
21
 * at info AT gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.fmap.dal.swing.impl;
24

    
25
import org.gvsig.featureform.swing.impl.dynformfield.ImageByteArray.JDynFormFieldImageByteArrayFactory;
26
import org.gvsig.featureform.swing.impl.dynformfield.ImageFile.JDynFormFieldImageFileFactory;
27
import org.gvsig.featureform.swing.impl.dynformfield.linkedentity.JDynFormFieldFeatureLinkFactory;
28
import org.gvsig.featureform.swing.impl.dynformfield.linkedentities.JDynFormFieldFeaturesTableLinkFactory;
29
import org.gvsig.fmap.dal.impl.DefaultEditingNotificationManager;
30
import org.gvsig.fmap.dal.swing.DALSwingLibrary;
31
import org.gvsig.fmap.dal.swing.DALSwingLocator;
32
import org.gvsig.fmap.dal.swing.dataStoreParameters.DataStoreParametersPanelManager;
33
import org.gvsig.fmap.dal.swing.impl.dataStoreParameters.DataStoreDynObjectParametersPanelFactory;
34
import org.gvsig.fmap.dal.swing.impl.dataStoreParameters.DefaultDataStoreParametersPanelManager;
35
import org.gvsig.fmap.dal.swing.impl.dynobjectutils.CreateComboModelFromTable;
36
import org.gvsig.fmap.dal.swing.impl.expressionevaluator.FeatureStoreElementFactory;
37
import org.gvsig.tools.ToolsLocator;
38
import org.gvsig.tools.dynform.spi.DynFormSPILocator;
39
import org.gvsig.tools.dynform.spi.DynFormSPIManager;
40
import org.gvsig.tools.dynobject.DynObjectManager;
41
import org.gvsig.tools.library.AbstractLibrary;
42
import org.gvsig.tools.library.LibraryException;
43
import org.slf4j.Logger;
44
import org.slf4j.LoggerFactory;
45

    
46

    
47
/**
48
 * @author fdiaz
49
 *
50
 */
51
public class DefaultDALSwingLibrary  extends AbstractLibrary{
52

    
53
    private static final Logger LOGGER = LoggerFactory.getLogger(DefaultDALSwingLibrary.class);
54

    
55
    @Override
56
    public void doRegistration() {
57
        registerAsImplementationOf(DALSwingLibrary.class);
58
    }
59

    
60

    
61
    @Override
62
    protected void doInitialize() throws LibraryException {
63
        DALSwingLocator.registerSwingManager(DefaultDataSwingManager.class);
64
        DALSwingLocator.registerEditingNotificationManager(DefaultEditingNotificationManager.class);
65

    
66
        DALSwingLocator.registerDataStoreParametersPanelManager(DefaultDataStoreParametersPanelManager.class);
67
    }
68

    
69

    
70
    @Override
71
    protected void doPostInitialize() throws LibraryException {
72
        try {
73
            DynFormSPIManager manager = DynFormSPILocator.getDynFormSPIManager();
74
            if( manager != null ) {
75
                    manager.addServiceFactory(new JDynFormFieldFeatureLinkFactory());
76
                    manager.addServiceFactory(new JDynFormFieldFeaturesTableLinkFactory());
77
                    manager.addServiceFactory(new JDynFormFieldImageByteArrayFactory());
78
                    manager.addServiceFactory(new JDynFormFieldImageFileFactory());
79
            }
80
            DynObjectManager dynObjectmanager = ToolsLocator.getDynObjectManager();
81
            dynObjectmanager.registerDynMethod(new CreateComboModelFromTable("DAL.createComboModelFromTable", "XXXXXXXXXXXXXXXXXXXX."));
82

    
83
            DataStoreParametersPanelManager dataStoreParametersPanelManager = DALSwingLocator.getDataStoreParametersPanelManager();
84
            dataStoreParametersPanelManager.registerFactory(new DataStoreDynObjectParametersPanelFactory());
85
        } catch(Exception ex) {
86
            LOGGER.warn("Can't register DAL components in DynForms",ex);
87
        }
88
        try {
89
            FeatureStoreElementFactory.selfRegister();
90
        } catch(Exception ex) {
91
            LOGGER.warn("Can't register DAL components in ExpressionEvaluator",ex);
92
        }
93
    }
94

    
95
}