Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_data / src / org / gvsig / fmap / data / index / SpatialIndexParameters.java @ 23204

History | View | Annotate | Download (1.93 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
* 2008 {{Company}}   {{Task}}
26
*/
27
 
28
package org.gvsig.fmap.data.index;
29

    
30
import java.util.HashMap;
31
import java.util.Map;
32

    
33
import org.gvsig.fmap.geom.primitive.Envelope;
34

    
35

    
36
/**
37
 * 
38
 * @author jyarza
39
 *
40
 */
41
public class SpatialIndexParameters {
42
        
43
        private boolean overwrite = true;
44
        private String filename = null;
45
        private Envelope envelope = null;
46
        private int featureCount = 0;
47
        
48
        private Map params = new HashMap();
49
        
50
        public void setParam(String key, Object value) {
51
                params.put(key, value);
52
        }
53
        
54
        public Object getParam(String key) {
55
                return params.get(key);
56
        }
57
        
58
        public boolean isOverwrite() {
59
                return overwrite;
60
        }
61
        
62
        public void setOverwrite(boolean b) {
63
                overwrite = b;
64
        }
65
        
66
        public String getFilename() {
67
                return filename;
68
        }
69
        
70
        public void setFilename(String s) {
71
                filename = s;
72
        }
73
        
74
        public Envelope getEnvelope() {
75
                return envelope;
76
        }
77
        
78
        public void setEnvelope(Envelope env) {
79
                envelope = env;
80
        }
81
        
82
        public int getFeatureCount() {
83
                return featureCount;
84
        }
85
        
86
        public void setFeatureCount(int n) {
87
                featureCount = n;
88
        }
89
}