Revision 28375 branches/v2_0_0_prep/libraries/libGeocoding/src/org/gvsig/geocoding/pattern/impl/DefaultGeocodingSource.java

View differences:

DefaultGeocodingSource.java
27 27

  
28 28
package org.gvsig.geocoding.pattern.impl;
29 29

  
30
import org.gvsig.fmap.dal.DataStore;
30 31
import org.gvsig.fmap.dal.feature.FeatureStore;
31 32
import org.gvsig.geocoding.pattern.GeocodingSource;
32 33
import org.gvsig.geocoding.styles.AbstractGeocodingStyle;
......
36 37
import org.slf4j.LoggerFactory;
37 38

  
38 39
/**
39
 * Class Source. This class has the geocoding style and the FeatureStore of the
40
 * GeocodingSource class implementation. This class has the geocoding style and the FeatureStore of the
40 41
 * data source
41 42
 * 
42 43
 * @author <a href="mailto:jsanz@prodevelop.es"> Jorge Gaspar Sanz Salinas</a>
......
52 53
	private static final String LAYERSOURCE = "layersource";
53 54

  
54 55
	private AbstractGeocodingStyle style;
55
	private FeatureStore layerSource;
56
	private DataStore layerSource;
56 57

  
57 58
	/**
58 59
	 * Default constructor
......
96 97
	 * 
97 98
	 * @return
98 99
	 */
99
	public FeatureStore getLayerSource() {
100
	public DataStore getLayerSource() {
100 101
		return layerSource;
101 102
	}
102 103

  
......
105 106
	 * 
106 107
	 * @param layerSource
107 108
	 */
108
	public void setLayerSource(FeatureStore layerSource) {
109
	public void setLayerSource(DataStore layerSource) {
109 110
		this.layerSource = layerSource;
110 111
	}
111 112

  

Also available in: Unified diff