Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_mapcontext / src / org / gvsig / fmap / mapcontext / layers / vectorial / VectorLayer.java @ 38605

History | View | Annotate | Download (511 Bytes)

1
package org.gvsig.fmap.mapcontext.layers.vectorial;
2

    
3
import org.gvsig.fmap.dal.feature.FeatureStore;
4
import org.gvsig.fmap.mapcontext.layers.operations.ClassifiableVectorial;
5
import org.gvsig.fmap.mapcontext.layers.operations.InfoByPoint;
6
import org.gvsig.fmap.mapcontext.layers.operations.SingleLayer;
7
import org.gvsig.fmap.mapcontext.rendering.legend.styling.ILabelable;
8

    
9
public interface VectorLayer  extends SingleLayer, ILabelable, InfoByPoint,
10
ClassifiableVectorial  {
11

    
12
        FeatureStore getFeatureStore();
13
}