Package models.files

Examples of models.files.EdbDatabaseReader


 
  public static IDatabaseReader createReaderFromFormat(String format) throws UnknownFormatException {
    if (format.equalsIgnoreCase("dat")) {
      return new DatDatabaseReader();
    } else if (format.equalsIgnoreCase("edb")) {
      return new EdbDatabaseReader();
    }
    throw new UnknownFormatException(format);
  }
View Full Code Here

TOP

Related Classes of models.files.EdbDatabaseReader

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.