standard javadoc

This commit is contained in:
Gabriele C
2015-11-21 01:31:18 +01:00
parent 118c79401a
commit bd1f868c6d
94 changed files with 1176 additions and 1174 deletions
+6 -6
View File
@@ -105,8 +105,8 @@ public class LimboCache {
/**
* Method getLimboPlayer.
* @param name String
* @return LimboPlayer
*/
* @return LimboPlayer */
public LimboPlayer getLimboPlayer(String name) {
return cache.get(name);
}
@@ -114,16 +114,16 @@ public class LimboCache {
/**
* Method hasLimboPlayer.
* @param name String
* @return boolean
*/
* @return boolean */
public boolean hasLimboPlayer(String name) {
return cache.containsKey(name);
}
/**
* Method getInstance.
* @return LimboCache
*/
* @return LimboCache */
public static LimboCache getInstance() {
if (singleton == null) {
singleton = new LimboCache(AuthMe.getInstance());
+16 -16
View File
@@ -48,40 +48,40 @@ public class LimboPlayer {
/**
* Method getName.
* @return String
*/
* @return String */
public String getName() {
return name;
}
/**
* Method getLoc.
* @return Location
*/
* @return Location */
public Location getLoc() {
return loc;
}
/**
* Method getGameMode.
* @return GameMode
*/
* @return GameMode */
public GameMode getGameMode() {
return gameMode;
}
/**
* Method getOperator.
* @return boolean
*/
* @return boolean */
public boolean getOperator() {
return operator;
}
/**
* Method getGroup.
* @return String
*/
* @return String */
public String getGroup() {
return group;
}
@@ -98,8 +98,8 @@ public class LimboPlayer {
/**
* Method getTimeoutTaskId.
* @return BukkitTask
*/
* @return BukkitTask */
public BukkitTask getTimeoutTaskId() {
return timeoutTaskId;
}
@@ -116,16 +116,16 @@ public class LimboPlayer {
/**
* Method getMessageTaskId.
* @return BukkitTask
*/
* @return BukkitTask */
public BukkitTask getMessageTaskId() {
return messageTaskId;
}
/**
* Method isFlying.
* @return boolean
*/
* @return boolean */
public boolean isFlying() {
return flying;
}