Added package-info

This commit is contained in:
stijnb1234 2020-03-01 10:05:43 +01:00
parent 6c0a635063
commit 14c26b996b
11 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,4 @@
/**
* All the objects used for V10Lift
*/
package nl.SBDeveloper.V10Lift.API.Objects;

View file

@ -4,6 +4,7 @@ import nl.SBDeveloper.V10Lift.Managers.DataManager;
import nl.SBDeveloper.V10Lift.V10LiftPlugin;
import org.bukkit.Bukkit;
/** The doorcloser runnable, used for checking if the door can be closed. */
public class DoorCloser implements Runnable {
private final String liftName;
private int pid;

View file

@ -19,6 +19,7 @@ import org.bukkit.inventory.ItemStack;
import java.util.*;
/** The MoveLift runnable, used for moving a lift. */
public class MoveLift implements Runnable {
private final String liftName;

View file

@ -0,0 +1,4 @@
/**
* All the runnables of V10Lift
*/
package nl.SBDeveloper.V10Lift.API.Runnables;

View file

@ -24,6 +24,7 @@ import org.bukkit.entity.Player;
import javax.annotation.Nonnull;
import java.util.*;
/** The Main API class, for all the API methods */
public class V10LiftAPI {
/* Load managers... */
private static ForbiddenBlockManager fbm;

View file

@ -0,0 +1,4 @@
/**
* The main API package
*/
package nl.SBDeveloper.V10Lift.API;

View file

@ -0,0 +1,4 @@
/**
* The command and tab manager of v10lift
*/
package nl.SBDeveloper.V10Lift.Commands;

View file

@ -0,0 +1,4 @@
/**
* All the event listeners of V10Lift
*/
package nl.SBDeveloper.V10Lift.Listeners;

View file

@ -0,0 +1,4 @@
/**
* The package with all the managers, like forbidden blocks, data and more
*/
package nl.SBDeveloper.V10Lift.Managers;

View file

@ -0,0 +1,4 @@
/**
* The package with all the utils
*/
package nl.SBDeveloper.V10Lift.Utils;

View file

@ -0,0 +1,4 @@
/**
* Main package of V10Lift
*/
package nl.SBDeveloper.V10Lift;