Prepare the project for javadocs

This commit is contained in:
Gabriele C
2015-11-21 01:27:06 +01:00
parent adcd70b91d
commit 118c79401a
168 changed files with 4375 additions and 422 deletions
@@ -15,6 +15,8 @@ import fr.xephi.authme.listener.AuthMePlayerListener;
import fr.xephi.authme.settings.Settings;
import fr.xephi.authme.util.Utils;
/**
*/
public class AsyncronousQuit {
protected AuthMe plugin;
@@ -26,6 +28,13 @@ public class AsyncronousQuit {
private boolean needToChange = false;
private boolean isKick = false;
/**
* Constructor for AsyncronousQuit.
* @param p Player
* @param plugin AuthMe
* @param database DataSource
* @param isKick boolean
*/
public AsyncronousQuit(Player p, AuthMe plugin, DataSource database,
boolean isKick) {
this.player = p;
@@ -6,6 +6,8 @@ import org.bukkit.entity.Player;
import fr.xephi.authme.AuthMe;
import fr.xephi.authme.settings.Settings;
/**
*/
public class ProcessSyncronousPlayerQuit implements Runnable {
protected AuthMe plugin;
@@ -14,6 +16,14 @@ public class ProcessSyncronousPlayerQuit implements Runnable {
protected boolean isFlying;
protected boolean needToChange;
/**
* Constructor for ProcessSyncronousPlayerQuit.
* @param plugin AuthMe
* @param player Player
* @param isOp boolean
* @param isFlying boolean
* @param needToChange boolean
*/
public ProcessSyncronousPlayerQuit(AuthMe plugin, Player player
, boolean isOp, boolean isFlying
, boolean needToChange) {
@@ -24,6 +34,10 @@ public class ProcessSyncronousPlayerQuit implements Runnable {
this.needToChange = needToChange;
}
/**
* Method run.
* @see java.lang.Runnable#run()
*/
@Override
public void run() {