Statistics
| Revision:

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

History | View | Annotate | Download (413 Bytes)

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

    
3
import java.util.Map;
4

    
5
import org.gvsig.fmap.dal.exceptions.DataException;
6
import org.gvsig.fmap.dal.feature.Feature;
7

    
8
public interface LegendLabelingManager {
9

    
10
        public void startLoading(Map params);
11

    
12
        public void add(Feature feature, Map params) throws DataException;
13

    
14
        public Object getDefaultLegend();
15

    
16
        public Object getLabeling();
17

    
18
        public void endLoading();
19
}