Statistics
| Revision:

gvsig-raster / org.gvsig.raster.ermapper / trunk / org.gvsig.raster.ermapper / org.gvsig.raster.ermapper.io / src / main / java / org / gvsig / raster / ermapper / io / ErmapperDataParameters.java @ 2449

History | View | Annotate | Download (2.32 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
/*
24
* AUTHORS (In addition to CIT):
25
* 2009 IVER T.I   {{Task}}
26
*/
27

    
28
package org.gvsig.raster.ermapper.io;
29

    
30
import org.gvsig.raster.impl.store.AbstractRasterDataParameters;
31
import org.gvsig.raster.impl.store.AbstractRasterFileDataParameters;
32
import org.gvsig.tools.ToolsLocator;
33
import org.gvsig.tools.dynobject.DelegatedDynObject;
34
import org.gvsig.tools.dynobject.DynStruct;
35
import org.gvsig.tools.persistence.PersistenceManager;
36

    
37
/**
38
 * Parameters for the Ecw provider
39
 * @author Nacho Brodin (nachobrodin@gmail.com)
40
 */
41
public class ErmapperDataParameters extends AbstractRasterFileDataParameters {
42
        
43
        public ErmapperDataParameters() {
44
                initialize();
45
        }
46
        
47
        protected void initialize() {
48
                this.delegatedDynObject = (DelegatedDynObject) ToolsLocator
49
                                .getDynObjectManager().createDynObject(
50
                                                registerDynClass());
51
        }
52
        
53
        public String getDataStoreName() {
54
                return ErmapperProvider.NAME;
55
        }
56
        
57
        public String getDescription() {
58
                return ErmapperProvider.DESCRIPTION;
59
        }
60
        
61
        public static DynStruct registerDynClass() {
62
                PersistenceManager manager = ToolsLocator.getPersistenceManager();
63
                DynStruct definition = manager.getDefinition("ErmapperDataParameters_Persistent");
64
                if( definition == null ) {
65

    
66
                        definition = manager.addDefinition(
67
                                        ErmapperDataParameters.class,
68
                                        "ErmapperDataParameters_Persistent",
69
                                        "ErmapperDataParameters Persistent",
70
                                        null, 
71
                                        null
72
                        );
73
                        AbstractRasterDataParameters.registerDynClass(definition);
74
                }
75
                return definition;
76
        }
77
}