Revision 22037 branches/Mobile_Compatible_Hito_1/libFMap_mobile_shp_driver/src-file/org/gvsig/data/datastores/vectorial/file/shp_util/NewShpFeatureID.java

View differences:

NewShpFeatureID.java
8 8
import org.gvsig.data.vectorial.FeatureID;
9 9
import org.gvsig.data.vectorial.FeatureType;
10 10

  
11
/**
12
 * This class implements the FeatureID and needs in the constructor an instance that
13
 * implements IGeometricDataStore for reusability.
14
 * 
15
 * @see org.gvsig.data.vectorial.FeatureID
16
 * @see org.gvsig.data.datastores.vectorial.file.shp_util.IGeometricDataStore
17
 * 
18
 * @author jldominguez
19
 *
20
 */
11 21
public class NewShpFeatureID implements FeatureID {
12 22
	
13 23
	private int featIndex = 0;
14 24
	private IGeometricDataStore store;
15 25
	
26
	/**
27
	 * 
28
	 * @param _store the data store to be used
29
	 * @param findex the feature index
30
	 */
16 31
	public NewShpFeatureID(IGeometricDataStore _store, int findex) {
17 32
		featIndex = findex;
18 33
		store = _store;

Also available in: Unified diff