Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.file / org.gvsig.fmap.dal.file.csv / src / main / java / org / gvsig / fmap / dal / store / csv / CSVStoreProviderFactory.java @ 43510

History | View | Annotate | Download (2.28 KB)

1 40846 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.fmap.dal.store.csv;
25
26
import org.gvsig.fmap.dal.DataParameters;
27
import org.gvsig.fmap.dal.DataStoreProvider;
28
import org.gvsig.fmap.dal.exception.InitializeException;
29
import org.gvsig.fmap.dal.feature.FeatureStoreProviderFactory;
30
import org.gvsig.fmap.dal.feature.spi.AbstractFeatureStoreProviderFactory;
31
import org.gvsig.fmap.dal.spi.DataStoreProviderServices;
32
import org.gvsig.tools.dynobject.DynObject;
33
34
public class CSVStoreProviderFactory extends AbstractFeatureStoreProviderFactory implements FeatureStoreProviderFactory{
35
36
        protected CSVStoreProviderFactory(String name, String description) {
37
                super(name, description);
38
        }
39
40
        public DataStoreProvider createProvider(DataParameters parameters,
41
                        DataStoreProviderServices providerServices)
42
                        throws InitializeException {
43
                return new CSVStoreProvider((CSVStoreParameters) parameters, providerServices);
44
        }
45
46
        public DynObject createParameters() {
47
                return new CSVStoreParameters();
48
        }
49
50
        public int allowCreate() {
51 41064 jjdelcerro
                return NO;
52 40846 jjdelcerro
        }
53
54
        public int allowWrite() {
55 41064 jjdelcerro
                return NO;
56 40846 jjdelcerro
        }
57
58
        public int allowRead() {
59
                return YES;
60
        }
61
62
        public int hasRasterSupport() {
63
                return NO;
64
        }
65
66
        public int hasTabularSupport() {
67
                return YES;
68
        }
69
70
        public int hasVectorialSupport() {
71
                return YES;
72
        }
73
74
        public int allowMultipleGeometryTypes() {
75
                return YES;
76
        }
77
78
        public int allowEditableFeatureType() {
79 41064 jjdelcerro
                return NO;
80 40846 jjdelcerro
        }
81
82
}