/fr/tobast/bukkit/chainbrewing/ChainBrewing.java

https://gitlab.com/chainbrewing-bukkit/chainbrewing-bukkit · Java · 56 lines · 17 code · 7 blank · 32 comment · 0 complexity · d8e16bed20935c22d5b7ce9198014209 MD5 · raw file

  1. /*
  2. * PROGRAM:
  3. * ChainBrewing - bukkit plugin
  4. *
  5. * AUTHOR:
  6. * Théophile BASTIAN (a.k.a. Tobast)
  7. *
  8. * CONTACT & WEBSITE:
  9. * http://tobast.fr/ (contact feature included)
  10. * error-report@tobast.fr (error reporting only)
  11. *
  12. * SHORT DESCRIPTION:
  13. * See first license line.
  14. *
  15. * LICENSE:
  16. * ChainBrewing is a Bukkit plugin designed to make a "brewing production chain".
  17. * Copyright (C) 2012 Théophile BASTIAN
  18. *
  19. * This program is free software: you can redistribute it and/or modify
  20. * it under the terms of the GNU General Public License as published by
  21. * the Free Software Foundation, either version 3 of the License, or
  22. * (at your option) any later version.
  23. *
  24. * This program is distributed in the hope that it will be useful,
  25. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  27. * GNU General Public License for more details.
  28. *
  29. * You should have received a copy of the GNU General Public License
  30. * along with this program. If not, see http://www.gnu.org/licenses/gpl.txt.
  31. */
  32. package fr.tobast.bukkit.chainbrewing;
  33. // You just lost the game. Sorry.
  34. import java.util.logging.Logger;
  35. import org.bukkit.plugin.java.JavaPlugin;
  36. import fr.tobast.bukkit.chainbrewing.PlacementListener;
  37. public class ChainBrewing extends JavaPlugin
  38. {
  39. Logger log=Logger.getLogger("Minecraft");
  40. public void onEnable()
  41. {
  42. getServer().getPluginManager().registerEvents(new PlacementListener(log, this), this);
  43. log.info("[ChainBrewing] Plugin enabled.");
  44. }
  45. public void onDisable()
  46. {
  47. log.info("[ChainBrewing] Plugin disabled.");
  48. }
  49. }