Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_data / src / org / gvsig / fmap / data / feature / FeatureReference.java @ 23872

History | View | Annotate | Download (267 Bytes)

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

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

    
5

    
6
public interface FeatureReference {
7

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