Copy pasted javadocs are super great

This commit is contained in:
Jikoo 2019-05-05 16:49:41 -04:00
parent 5c006f8ebd
commit f80df9d83b

View file

@ -23,28 +23,28 @@ import org.jetbrains.annotations.NotNull;
public interface ISpecialInventory { public interface ISpecialInventory {
/** /**
* Gets the Inventory associated with this ISpecialEnderChest. * Gets the Inventory associated with this ISpecialInventory.
* *
* @return the Inventory * @return the Inventory
*/ */
@NotNull Inventory getBukkitInventory(); @NotNull Inventory getBukkitInventory();
/** /**
* Sets the Player associated with this ISpecialEnderChest online. * Sets the Player associated with this ISpecialInventory online.
* *
* @param player the Player coming online * @param player the Player coming online
*/ */
void setPlayerOnline(@NotNull Player player); void setPlayerOnline(@NotNull Player player);
/** /**
* Sets the Player associated with this ISpecialEnderChest offline. * Sets the Player associated with this ISpecialInventory offline.
*/ */
void setPlayerOffline(); void setPlayerOffline();
/** /**
* Gets whether or not this ISpecialEnderChest is in use. * Gets whether or not this ISpecialInventory is in use.
* *
* @return true if the ISpecialEnderChest is in use * @return true if the ISpecialInventory is in use
*/ */
boolean isInUse(); boolean isInUse();