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 / featureform / swing / impl / dynformfield / ImageFile / JDynFormFieldImageFileFactory.java @ 44128

History | View | Annotate | Download (2.92 KB)

1 44128 jjdelcerro
/**
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.featureform.swing.impl.dynformfield.ImageFile;
25
26
import org.gvsig.featureform.swing.impl.dynformfield.ImageByteArray.JDynFormFieldImageByteArray;
27
import org.gvsig.tools.ToolsLocator;
28
import org.gvsig.tools.dataTypes.DataTypes;
29
import org.gvsig.tools.dynform.spi.DynFormSPILocator;
30
import org.gvsig.tools.dynform.spi.DynFormSPIManager;
31
import org.gvsig.tools.dynform.spi.JDynFormFieldFactory;
32
import org.gvsig.tools.dynobject.DynField;
33
import org.gvsig.tools.dynobject.DynObject;
34
import org.gvsig.tools.dynobject.DynObjectManager;
35
import org.gvsig.tools.dynobject.DynStruct;
36
import org.gvsig.tools.service.Service;
37
import org.gvsig.tools.service.ServiceException;
38
import org.gvsig.tools.service.spi.ServiceManager;
39
40
public class JDynFormFieldImageFileFactory implements JDynFormFieldFactory {
41
42
        private String name = null;
43
        private DynStruct parametersDefinition = null;
44
45
        public String getName() {
46
                if( name == null ) {
47
                        DynFormSPIManager manager = DynFormSPILocator.getDynFormSPIManager();
48
                        this.name = manager.makeServiceName(DataTypes.FILE, "Image");
49
                }
50
                return this.name;
51
        }
52
53
54
        public Service create(DynObject parameters, ServiceManager serviceManager)
55
                        throws ServiceException {
56
                return new JDynFormFieldImageByteArray(parameters, serviceManager);
57
        }
58
59
        public DynObject createParameters() {
60
                return ToolsLocator.getDynObjectManager().createDynObject(parametersDefinition);
61
        }
62
63
        public void initialize() {
64
                if( this.parametersDefinition == null ) {
65
                        String serviceName = this.getName();
66
                    DynObjectManager manager = ToolsLocator.getDynObjectManager();
67
                    this.parametersDefinition = manager.createDynClass(
68
                                    serviceName, "Parameters definition for image fields (File) in dynamic forms");
69
                    this.parametersDefinition.addDynFieldObject(DynFormSPIManager.FIELD_FIELDDEFINITION)
70
                                .setClassOfValue(DynField.class).setMandatory(true);
71
                    this.parametersDefinition.addDynFieldObject(DynFormSPIManager.FIELD_VALUE)
72
                                .setClassOfValue(DynField.class).setMandatory(true);
73
                }
74
        }
75
76
77
}