Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dataFile / src / org / gvsig / fmap / data / feature / file / dgn / operation / DGNLegendLabelingManagerFactory.java @ 23303

History | View | Annotate | Download (383 Bytes)

1
package org.gvsig.fmap.data.feature.file.dgn.operation;
2

    
3
import org.gvsig.fmap.data.feature.operation.LegendLabelingManager;
4
import org.gvsig.fmap.data.feature.operation.LegendLabelingManagerFactory;
5

    
6
public class DGNLegendLabelingManagerFactory implements
7
                LegendLabelingManagerFactory {
8

    
9
        public LegendLabelingManager newManager() {
10
                return new DGNLegendLabelingManager();
11
        }
12

    
13
}