Package org.gdbms.engine.data.file

Examples of org.gdbms.engine.data.file.FileDataSourceSupport


    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);
    }
View Full Code Here

TOP

Related Classes of org.gdbms.engine.data.file.FileDataSourceSupport

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.