Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.spi / src / main / java / org / gvsig / fmap / dal / feature / spi / memory / MemoryResourceParameters.java @ 40559

History | View | Annotate | Download (2.74 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
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2009 {}  {{Task}}
27
 */
28
package org.gvsig.fmap.dal.feature.spi.memory;
29

    
30
import org.gvsig.fmap.dal.resource.spi.AbstractResourceParameters;
31
import org.gvsig.tools.ToolsLocator;
32
import org.gvsig.tools.dynobject.DelegatedDynObject;
33
import org.gvsig.tools.dynobject.DynClass;
34
import org.gvsig.tools.dynobject.DynObjectManager;
35

    
36
/**
37
 * Parameters to create a {@link MemoryResource}.
38
 * 
39
 * @author 2009- <a href="cordinyana@gvsig.org">C?sar Ordi?ana</a> - gvSIG team
40
 */
41
public class MemoryResourceParameters extends AbstractResourceParameters {
42

    
43
        public static final String DYNCLASS_NAME = "MemoryResourceParameters";
44

    
45
        private static String FIELD_NAME = "name";
46

    
47
        private DelegatedDynObject delegatedDynObject;
48

    
49
        /**
50
         * Creates a new memory resource parameters.
51
         */
52
        public MemoryResourceParameters() {
53
                delegatedDynObject =
54
                                (DelegatedDynObject) ToolsLocator.getDynObjectManager()
55
                                                .createDynObject(registerDynClass());
56
        }
57

    
58
        /**
59
         * Creates a new memory resource parameters with the given memory resource
60
         * name.
61
         * 
62
         * @param name
63
         *            of the resource
64
         */
65
        public MemoryResourceParameters(String name) {
66
                this();
67
                setDynValue(FIELD_NAME, name);
68
        }
69

    
70
        protected DelegatedDynObject getDelegatedDynObject() {
71
                return delegatedDynObject;
72
        }
73

    
74
        public String getTypeName() {
75
                return MemoryResource.NAME;
76
        }
77

    
78
        /**
79
         * Registers the DynClass related to this parameters.
80
         * 
81
         */
82
    private static synchronized DynClass registerDynClass() {
83
        DynObjectManager dynman = ToolsLocator.getDynObjectManager();
84
        DynClass dynClass = dynman.get(DYNCLASS_NAME);
85
        if (dynClass == null) {
86
            dynClass = dynman.add(DYNCLASS_NAME);
87

    
88
                        dynClass.addDynFieldString(FIELD_NAME).setDescription(
89
                                        "The name of the memory resource");
90
        }
91
        return dynClass;
92
    }
93
}