Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_dal / src / org / gvsig / fmap / dal / feature / FeatureStoreProviderFactory.java @ 36202

History | View | Annotate | Download (482 Bytes)

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

    
3
import java.util.List;
4

    
5
import org.gvsig.fmap.dal.DataStoreProviderFactory;
6

    
7
public interface FeatureStoreProviderFactory extends DataStoreProviderFactory {
8

    
9
        /**
10
         * Return a list of geometry types (Geometry.TYPES) supported
11
         * by this provider. If the provider has not vectorial support
12
         * or has not restrictions over geometry types return null.
13
         * 
14
         * @return List of Geometry.TYPES or null
15
         */
16
        public List getGeomtriesSupporteds();
17
}