Statistics
| Revision:

gvsig-lrs / org.gvsig.lrs / trunk / org.gvsig.lrs / org.gvsig.lrs.lib / org.gvsig.lrs.lib.api / src / main / java / org / gvsig / lrs / lib / api / LrsCreateRouteAlgorithmParams.java @ 6

History | View | Annotate | Download (3.61 KB)

1
/* gvSIG. Desktop Geographic Information System.
2
 *
3
 * Copyright ? 2007-2015 gvSIG Association
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18
 * MA  02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us
21
 * at info AT gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.lrs.lib.api;
24

    
25
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
26
import org.gvsig.fmap.dal.feature.FeatureStore;
27

    
28
/**
29
 * @author fdiaz
30
 *
31
 */
32
public interface LrsCreateRouteAlgorithmParams extends LrsAlgorithmParams {
33

    
34

    
35
    /**
36
     * @return the sourceFeatureStore
37
     */
38
    public FeatureStore getSourceFeatureStore();
39

    
40
    /**
41
     * @param sourceFeatureStore the sourceFeatureStore to set
42
     */
43
    public void setSourceFeatureStore(FeatureStore sourceFeatureStore);
44

    
45
    /**
46
     * @return the idRouteField
47
     */
48
    public FeatureAttributeDescriptor getIdRouteField();
49

    
50
    /**
51
     * @param idRouteField the idRouteField to set
52
     */
53
    public void setIdRouteField(FeatureAttributeDescriptor idRouteField);
54

    
55
    /**
56
     * @return the outputFeatoreStore
57
     */
58
    public FeatureStore getOutputFeatoreStore();
59

    
60
    /**
61
     * @param outputFeatoreStore the outputFeatoreStore to set
62
     */
63
    public void setOutputFeatoreStore(FeatureStore outputFeatoreStore);
64

    
65
    /**
66
     * @return the sourceOfMeasures
67
     */
68
    public LrsSourceOfMeasures getSourceOfMeasures();
69

    
70
    /**
71
     * @param sourceOfMeasures the sourceOfMeasures to set
72
     */
73
    public void setSourceOfMeasures(LrsSourceOfMeasures sourceOfMeasures);
74

    
75
    /**
76
     * @return the fromMeasureField
77
     */
78
    public FeatureAttributeDescriptor getFromMeasureField();
79

    
80
    /**
81
     * @param fromMeasureField the fromMeasureField to set
82
     */
83
    public void setFromMeasureField(FeatureAttributeDescriptor fromMeasureField);
84

    
85
    /**
86
     * @return the toMeasureField
87
     */
88
    public FeatureAttributeDescriptor getToMeasureField();
89

    
90
    /**
91
     * @param toMeasureField the toMeasureField to set
92
     */
93
    public void setToMeasureField(FeatureAttributeDescriptor toMeasureField);
94

    
95
    /**
96
     * @return the coordinatePriority
97
     */
98
    public LrsCoordinatesPriority getCoordinatePriority();
99

    
100
    /**
101
     * @param coordinatePriority the coordinatePriority to set
102
     */
103
    public void setCoordinatePriority(LrsCoordinatesPriority coordinatePriority);
104

    
105
    /**
106
     * @return the measureFactor
107
     */
108
    public double getMeasureFactor();
109

    
110
    /**
111
     * @param measureFactor the measureFactor to set
112
     */
113
    public void setMeasureFactor(double measureFactor);
114

    
115
    /**
116
     * @return the measureOffset
117
     */
118
    public double getMeasureOffset();
119

    
120
    /**
121
     * @param measureOffset the measureOffset to set
122
     */
123
    public void setMeasureOffset(double measureOffset);
124

    
125
    /**
126
     * @return the ignoreSpatialGaps
127
     */
128
    public boolean ignoreSpatialGaps();
129

    
130
    /**
131
     * @param ignoreSpatialGaps the ignoreSpatialGaps to set
132
     */
133
    public void setIgnoreSpatialGaps(boolean ignoreSpatialGaps);
134

    
135
}