Statistics
| Revision:

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

History | View | Annotate | Download (324 Bytes)

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

    
3

    
4
public interface LegendBuilder {
5

    
6
        final public static String OPERATION_NAME = "getLeyendBuilder";
7

    
8
        public LegendBuilder initialize(FeatureStoreProvider store);
9

    
10
        public void begin();
11

    
12
        public void process(FeatureData feature);
13

    
14
        public void end();
15

    
16
        public Object getLegend();
17

    
18
}