Statistics
| Revision:

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

History | View | Annotate | Download (511 Bytes)

1 30011 cordinyana
package org.gvsig.fmap.mapcontext.layers.vectorial;
2
3 30038 cordinyana
import org.gvsig.fmap.dal.feature.FeatureStore;
4 30011 cordinyana
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 30038 cordinyana
        FeatureStore getFeatureStore();
13 30011 cordinyana
}