diff --git a/src/main/lombok/nl/SBDeveloper/V10Lift/API/Objects/package-info.java b/src/main/lombok/nl/SBDeveloper/V10Lift/API/Objects/package-info.java new file mode 100644 index 0000000..9641d24 --- /dev/null +++ b/src/main/lombok/nl/SBDeveloper/V10Lift/API/Objects/package-info.java @@ -0,0 +1,4 @@ +/** + * All the objects used for V10Lift + */ +package nl.SBDeveloper.V10Lift.API.Objects; \ No newline at end of file diff --git a/src/main/lombok/nl/SBDeveloper/V10Lift/API/Runnables/DoorCloser.java b/src/main/lombok/nl/SBDeveloper/V10Lift/API/Runnables/DoorCloser.java index 682bfe8..7e84492 100644 --- a/src/main/lombok/nl/SBDeveloper/V10Lift/API/Runnables/DoorCloser.java +++ b/src/main/lombok/nl/SBDeveloper/V10Lift/API/Runnables/DoorCloser.java @@ -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; diff --git a/src/main/lombok/nl/SBDeveloper/V10Lift/API/Runnables/MoveLift.java b/src/main/lombok/nl/SBDeveloper/V10Lift/API/Runnables/MoveLift.java index b7e3269..37a85df 100644 --- a/src/main/lombok/nl/SBDeveloper/V10Lift/API/Runnables/MoveLift.java +++ b/src/main/lombok/nl/SBDeveloper/V10Lift/API/Runnables/MoveLift.java @@ -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; diff --git a/src/main/lombok/nl/SBDeveloper/V10Lift/API/Runnables/package-info.java b/src/main/lombok/nl/SBDeveloper/V10Lift/API/Runnables/package-info.java new file mode 100644 index 0000000..f9f36db --- /dev/null +++ b/src/main/lombok/nl/SBDeveloper/V10Lift/API/Runnables/package-info.java @@ -0,0 +1,4 @@ +/** + * All the runnables of V10Lift + */ +package nl.SBDeveloper.V10Lift.API.Runnables; \ No newline at end of file diff --git a/src/main/lombok/nl/SBDeveloper/V10Lift/API/V10LiftAPI.java b/src/main/lombok/nl/SBDeveloper/V10Lift/API/V10LiftAPI.java index f329005..a58e121 100644 --- a/src/main/lombok/nl/SBDeveloper/V10Lift/API/V10LiftAPI.java +++ b/src/main/lombok/nl/SBDeveloper/V10Lift/API/V10LiftAPI.java @@ -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; diff --git a/src/main/lombok/nl/SBDeveloper/V10Lift/API/package-info.java b/src/main/lombok/nl/SBDeveloper/V10Lift/API/package-info.java new file mode 100644 index 0000000..99e65b4 --- /dev/null +++ b/src/main/lombok/nl/SBDeveloper/V10Lift/API/package-info.java @@ -0,0 +1,4 @@ +/** + * The main API package + */ +package nl.SBDeveloper.V10Lift.API; \ No newline at end of file diff --git a/src/main/lombok/nl/SBDeveloper/V10Lift/Commands/package-info.java b/src/main/lombok/nl/SBDeveloper/V10Lift/Commands/package-info.java new file mode 100644 index 0000000..b671b2b --- /dev/null +++ b/src/main/lombok/nl/SBDeveloper/V10Lift/Commands/package-info.java @@ -0,0 +1,4 @@ +/** + * The command and tab manager of v10lift + */ +package nl.SBDeveloper.V10Lift.Commands; \ No newline at end of file diff --git a/src/main/lombok/nl/SBDeveloper/V10Lift/Listeners/package-info.java b/src/main/lombok/nl/SBDeveloper/V10Lift/Listeners/package-info.java new file mode 100644 index 0000000..9d3a17f --- /dev/null +++ b/src/main/lombok/nl/SBDeveloper/V10Lift/Listeners/package-info.java @@ -0,0 +1,4 @@ +/** + * All the event listeners of V10Lift + */ +package nl.SBDeveloper.V10Lift.Listeners; \ No newline at end of file diff --git a/src/main/lombok/nl/SBDeveloper/V10Lift/Managers/package-info.java b/src/main/lombok/nl/SBDeveloper/V10Lift/Managers/package-info.java new file mode 100644 index 0000000..bb33677 --- /dev/null +++ b/src/main/lombok/nl/SBDeveloper/V10Lift/Managers/package-info.java @@ -0,0 +1,4 @@ +/** + * The package with all the managers, like forbidden blocks, data and more + */ +package nl.SBDeveloper.V10Lift.Managers; \ No newline at end of file diff --git a/src/main/lombok/nl/SBDeveloper/V10Lift/Utils/package-info.java b/src/main/lombok/nl/SBDeveloper/V10Lift/Utils/package-info.java new file mode 100644 index 0000000..d9e0c8e --- /dev/null +++ b/src/main/lombok/nl/SBDeveloper/V10Lift/Utils/package-info.java @@ -0,0 +1,4 @@ +/** + * The package with all the utils + */ +package nl.SBDeveloper.V10Lift.Utils; \ No newline at end of file diff --git a/src/main/lombok/nl/SBDeveloper/V10Lift/package-info.java b/src/main/lombok/nl/SBDeveloper/V10Lift/package-info.java new file mode 100644 index 0000000..8cdff34 --- /dev/null +++ b/src/main/lombok/nl/SBDeveloper/V10Lift/package-info.java @@ -0,0 +1,4 @@ +/** + * Main package of V10Lift + */ +package nl.SBDeveloper.V10Lift; \ No newline at end of file