private DriverDataSourceImpl driverDataSourceSupport;
public SpatialFileDataSourceAdapter(String name, String alias,
File file, SpatialFileDriver driver) {
super(name, alias);
fileDataSource = new FileDataSourceSupport(this, file, driver);
mes = new SpatialMetadataEditionSupport(this);
rowOrientedEdition = new RowOrientedEditionDataSourceImpl(this, driver, mes);
spatialDataSourceImpl = new SpatialDataSourceImpl(this, driver);
driverDataSourceSupport = new DriverDataSourceImpl(driver);
}