Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dal / src / org / gvsig / fmap / dal / feature / FeatureReference.java @ 24496

History | View | Annotate | Download (265 Bytes)

1
package org.gvsig.fmap.dal.feature;
2

    
3
import org.gvsig.fmap.dal.exceptions.DataException;
4

    
5

    
6
public interface FeatureReference {
7

    
8
        public Feature getFeature() throws DataException;
9
        public Feature getFeature(FeatureType featureType) throws DataException;
10
}