Examples of AchievementDAO


Examples of games.stendhal.server.core.engine.db.AchievementDAO

    DAORegister.get().register(StendhalBuddyDAO.class, new StendhalBuddyDAO());
    DAORegister.get().register(StendhalHallOfFameDAO.class, new StendhalHallOfFameDAO());
    DAORegister.get().register(StendhalKillLogDAO.class, new StendhalKillLogDAO ());
    DAORegister.get().register(StendhalNPCDAO.class, new StendhalNPCDAO());
    DAORegister.get().register(StendhalWebsiteDAO.class, new StendhalWebsiteDAO());
    DAORegister.get().register(AchievementDAO.class, new AchievementDAO());
    DAORegister.get().register(PendingAchievementDAO.class, new PendingAchievementDAO());
  }
View Full Code Here

Examples of games.stendhal.server.core.engine.db.AchievementDAO

  }

  @Override
  public void execute(DBTransaction transaction) throws SQLException,
      IOException {
    AchievementDAO dao = DAORegister.get().get(AchievementDAO.class);
    dao.saveReachedAchievement(transaction, id, playerName);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.