Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dataFile / src / org / gvsig / data / datastores / vectorial / file / dxf / DXFFeature.java @ 21709

History | View | Annotate | Download (710 Bytes)

1
package org.gvsig.data.datastores.vectorial.file.dxf;
2

    
3
import org.gvsig.data.DataException;
4
import org.gvsig.data.ReadException;
5
import org.gvsig.data.vectorial.Feature;
6
import org.gvsig.data.vectorial.FeatureType;
7
import org.gvsig.data.vectorial.MemoryFeature;
8

    
9
public class DXFFeature extends MemoryFeature{
10

    
11
        /**
12
         *
13
         */
14
        private static final long serialVersionUID = -8106683291293148819L;
15

    
16
        public DXFFeature(Feature feature) throws ReadException{
17
                super(feature);
18
        }
19
        public DXFFeature(FeatureType type, boolean defaultValues) throws ReadException {
20
                super(type, defaultValues);
21
        }
22

    
23
        protected Feature cloneFeature() throws DataException {
24
                return new DXFFeature(this);
25
        }
26
}