Statistics
| Revision:

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

History | View | Annotate | Download (307 Bytes)

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

    
3
import java.util.Collection;
4

    
5
import org.gvsig.data.vectorial.MemoryFeatureCollection;
6

    
7
public class DXFFeatureCollection extends MemoryFeatureCollection {
8

    
9
        public DXFFeatureCollection(Collection features) {
10
                this.features=features;
11
        }
12
}