Statistics
| Revision:

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

History | View | Annotate | Download (383 Bytes)

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

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

    
6
public class DXFLegendLabelingManagerFactory implements
7
                LegendLabelingManagerFactory {
8

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

    
13
}