Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/main/java/org/bukkit/inventory/Inventory.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ public interface Inventory extends Iterable<ItemStack> {
*/
public String getName();

/**
* Sets the name (title) of the inventory
*
* @param name The new name (title) of the inventory
*/
public void setName(String name);

/**
* Get the ItemStack found in the slot at the given index
*
Expand Down