Package it.eng.qbe.datasource.configuration.dao.fileimpl

Examples of it.eng.qbe.datasource.configuration.dao.fileimpl.ModelPropertiesDAOFileImpl


  File file;
 
  public FileDataSourceConfiguration(String modelName, File file) {
    super(modelName);
    this.file = file;
    this.modelPropertiesDAO = new ModelPropertiesDAOFileImpl(file);
    this.modelLabelsDAOFileImpl = new ModelI18NPropertiesDAOFileImpl(file);
    this.calculatedFieldsDAO = new CalculatedFieldsDAOFileImpl(file)
    this.viewsDAO = new ViewsDAOFileImpl(file)
  }
View Full Code Here

TOP

Related Classes of it.eng.qbe.datasource.configuration.dao.fileimpl.ModelPropertiesDAOFileImpl

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.