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 19844 vcaballero
package org.gvsig.data.datastores.vectorial.file.dxf;
2 19401 vcaballero
3 19603 vcaballero
import java.util.Collection;
4
5 19401 vcaballero
import org.gvsig.data.vectorial.MemoryFeatureCollection;
6
7 19603 vcaballero
public class DXFFeatureCollection extends MemoryFeatureCollection {
8 19401 vcaballero
9 19603 vcaballero
        public DXFFeatureCollection(Collection features) {
10
                this.features=features;
11
        }
12 19401 vcaballero
}