- Added javadoc headers

This commit is contained in:
AlexTheCoder 2016-04-28 21:11:38 -04:00
parent 4b7684da4c
commit 2887630cf8
2 changed files with 7 additions and 1 deletions

View File

@ -210,7 +210,10 @@ public class EloManager extends MiniDbClientPlugin<EloClientData>
_eloTeams.clear(); _eloTeams.clear();
} }
/**
* Manages and stores all Elo divisions and required data for those divisions for proper operation of Elo division display in-game.
*/
public enum EloDivision public enum EloDivision
{ {
DIAMOND("Diamond", -1, 3700, Material.DIAMOND_BLOCK), DIAMOND("Diamond", -1, 3700, Material.DIAMOND_BLOCK),

View File

@ -21,6 +21,9 @@ import org.bukkit.event.player.PlayerLoginEvent;
import org.bukkit.event.player.PlayerLoginEvent.Result; import org.bukkit.event.player.PlayerLoginEvent.Result;
import org.bukkit.event.player.PlayerQuitEvent; import org.bukkit.event.player.PlayerQuitEvent;
/**
* Wrapper for team games to implement for simple universal use of Elo and Ranked methods.
*/
public abstract class RankedTeamGame extends TeamGame public abstract class RankedTeamGame extends TeamGame
{ {
public int MaxPlayers = -1; public int MaxPlayers = -1;