Package fr.aston.gestionconges.persistances.impl

Examples of fr.aston.gestionconges.persistances.impl.DaoJDBCDemandeCongesImpl


  // public IDaoDemandeConges getDaoDemandeConges(String impl) {
  public IDaoDemandeConges getDaoDemandeConges() {
    // si l'impl�mentation impl="jdbc" alors retourner l'impl�mentation DaoJDBCDemandeConges
    // sinon retourner l'impl�mentation DaoDemandeConges
    if ("JDBC".equals(Messages.getString("FactoryPersistance.impl"))) {  //$NON-NLS-1$
      daoDemandeConges = new DaoJDBCDemandeCongesImpl();
            }
    else {
      daoDemandeConges = new DaoDemandeCongesImpl();
      }
    return daoDemandeConges;
View Full Code Here


  public IDaoDemandeConges getDaoDemandeConges(String impl) {
    // si l'impl�mentation impl="jdbc" alors retourner l'impl�mentation DaoJDBCDemandeConges
    // sinon retourner l'impl�mentation DaoDemandeConges
    if (impl == "JDBC") {
      daoDemandeConges = new DaoJDBCDemandeCongesImpl();
            }
    else {
      daoDemandeConges = new DaoDemandeCongesImpl();
      }
    return daoDemandeConges;
View Full Code Here

TOP

Related Classes of fr.aston.gestionconges.persistances.impl.DaoJDBCDemandeCongesImpl

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.