Package com.iver.cit.gvsig.fmap.layers

Examples of com.iver.cit.gvsig.fmap.layers.VectorialFileAdapter


    /**
     * @see org.gdbms.engine.data.driver.FileDriver#open(java.io.File)
     */
    public void open(File file) throws DriverException {
        VectorialFileAdapter adapter = new VectorialFileAdapter(file);
        adapter.setDriver(driver);
        try {
            adapter.start();
        } catch (DriverIOException e) {
            throw new DriverException(e);
        }
        super.open(adapter);
    }
View Full Code Here


    /**
   * @see org.gdbms.engine.data.driver.AlphanumericFileDriver#open(java.io.File)
   */
  public void open(File file) throws DriverException {
    VectorialFileAdapter adapter = new VectorialFileAdapter(file);
//TODO    adapter.setDriver(new DwgMemoryDriver());
        try {
            adapter.start();
        } catch (DriverIOException e) {
            throw new DriverException(e);
        }
    super.open(adapter);
  }
View Full Code Here

    /**
   * @see org.gdbms.engine.data.driver.AlphanumericFileDriver#open(java.io.File)
   */
  public void open(File file) throws DriverException {
    VectorialFileAdapter adapter = new VectorialFileAdapter(file);
    adapter.setDriver(new DgnMemoryDriver());
        try {
            adapter.start();
        } catch (DriverIOException e) {
            throw new DriverException(e);
        }
    super.open(adapter);
  }
View Full Code Here

    /**
   * @see org.gdbms.engine.data.driver.AlphanumericFileDriver#open(java.io.File)
   */
  public void open(File file) throws DriverException {
    VectorialFileAdapter adapter = new VectorialFileAdapter(file);
    adapter.setDriver(new DXFMemoryDriver());
        try {
            adapter.start();
        } catch (DriverIOException e) {
            throw new DriverException(e);
        }
    super.open(adapter);
  }
View Full Code Here

TOP

Related Classes of com.iver.cit.gvsig.fmap.layers.VectorialFileAdapter

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.