Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dataFile / src / org / gvsig / fmap / data / feature / file / shp / ShpFeatureID.java @ 24250

History | View | Annotate | Download (308 Bytes)

1 22373 jmvivo
package org.gvsig.fmap.data.feature.file.shp;
2 19401 vcaballero
3 22373 jmvivo
import org.gvsig.fmap.data.feature.file.dbf.DBFFeatureID;
4 19401 vcaballero
5
class ShpFeatureID extends DBFFeatureID{
6 22590 jmvivo
        protected ShpFeatureID(SHPStore store, long featureIndex) {
7 19736 vcaballero
                super(store,featureIndex);
8 19401 vcaballero
        }
9 20853 jmvivo
        protected long getIndex(){
10 20083 jmvivo
                return featureIndex;
11
        }
12 19401 vcaballero
}