Added package-info
This commit is contained in:
parent
6c0a635063
commit
14c26b996b
11 changed files with 35 additions and 0 deletions
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* All the objects used for V10Lift
|
||||||
|
*/
|
||||||
|
package nl.SBDeveloper.V10Lift.API.Objects;
|
|
@ -4,6 +4,7 @@ import nl.SBDeveloper.V10Lift.Managers.DataManager;
|
||||||
import nl.SBDeveloper.V10Lift.V10LiftPlugin;
|
import nl.SBDeveloper.V10Lift.V10LiftPlugin;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
|
|
||||||
|
/** The doorcloser runnable, used for checking if the door can be closed. */
|
||||||
public class DoorCloser implements Runnable {
|
public class DoorCloser implements Runnable {
|
||||||
private final String liftName;
|
private final String liftName;
|
||||||
private int pid;
|
private int pid;
|
||||||
|
|
|
@ -19,6 +19,7 @@ import org.bukkit.inventory.ItemStack;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
|
/** The MoveLift runnable, used for moving a lift. */
|
||||||
public class MoveLift implements Runnable {
|
public class MoveLift implements Runnable {
|
||||||
|
|
||||||
private final String liftName;
|
private final String liftName;
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* All the runnables of V10Lift
|
||||||
|
*/
|
||||||
|
package nl.SBDeveloper.V10Lift.API.Runnables;
|
|
@ -24,6 +24,7 @@ import org.bukkit.entity.Player;
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
|
/** The Main API class, for all the API methods */
|
||||||
public class V10LiftAPI {
|
public class V10LiftAPI {
|
||||||
/* Load managers... */
|
/* Load managers... */
|
||||||
private static ForbiddenBlockManager fbm;
|
private static ForbiddenBlockManager fbm;
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* The main API package
|
||||||
|
*/
|
||||||
|
package nl.SBDeveloper.V10Lift.API;
|
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* The command and tab manager of v10lift
|
||||||
|
*/
|
||||||
|
package nl.SBDeveloper.V10Lift.Commands;
|
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* All the event listeners of V10Lift
|
||||||
|
*/
|
||||||
|
package nl.SBDeveloper.V10Lift.Listeners;
|
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* The package with all the managers, like forbidden blocks, data and more
|
||||||
|
*/
|
||||||
|
package nl.SBDeveloper.V10Lift.Managers;
|
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* The package with all the utils
|
||||||
|
*/
|
||||||
|
package nl.SBDeveloper.V10Lift.Utils;
|
4
src/main/lombok/nl/SBDeveloper/V10Lift/package-info.java
Normal file
4
src/main/lombok/nl/SBDeveloper/V10Lift/package-info.java
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* Main package of V10Lift
|
||||||
|
*/
|
||||||
|
package nl.SBDeveloper.V10Lift;
|
Loading…
Reference in a new issue