Statistics
| Revision:

root / branches / v2_0_0_prep / extensions / extEditing / src / org / gvsig / editing / layers / FactoryLayerEdited.java @ 29685

History | View | Annotate | Download (332 Bytes)

1
package org.gvsig.editing.layers;
2

    
3
import org.gvsig.fmap.mapcontext.layers.FLayer;
4
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
5

    
6
public class FactoryLayerEdited {
7

    
8
        public static ILayerEdited createLayerEdited(FLayer lyr) {
9
                if (lyr instanceof FLyrVect)
10
                        return new VectorialLayerEdited(lyr);
11
                return null;
12
        }
13

    
14
}