diff options
author | DemonWav <demonwav@gmail.com> | 2015-05-21 17:17:41 -0500 |
---|---|---|
committer | md_5 <git@md-5.net> | 2015-05-26 18:42:39 +1000 |
commit | b465559cb5e8ff4fb028f61e7a740788e3f0b0f2 (patch) | |
tree | bba0be44ea2c3bb8c017e1524151f80e3f6e4372 | |
parent | fe015deb2ac3793aaa6cb1a084c589d90470fc57 (diff) | |
download | bukkit-b465559cb5e8ff4fb028f61e7a740788e3f0b0f2.tar bukkit-b465559cb5e8ff4fb028f61e7a740788e3f0b0f2.tar.gz bukkit-b465559cb5e8ff4fb028f61e7a740788e3f0b0f2.tar.lz bukkit-b465559cb5e8ff4fb028f61e7a740788e3f0b0f2.tar.xz bukkit-b465559cb5e8ff4fb028f61e7a740788e3f0b0f2.zip |
Add more detailed documentation for setItem() in PlayerInventory
-rw-r--r-- | src/main/java/org/bukkit/inventory/PlayerInventory.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/java/org/bukkit/inventory/PlayerInventory.java b/src/main/java/org/bukkit/inventory/PlayerInventory.java index d18c9f40..5dd3ae7a 100644 --- a/src/main/java/org/bukkit/inventory/PlayerInventory.java +++ b/src/main/java/org/bukkit/inventory/PlayerInventory.java @@ -43,6 +43,30 @@ public interface PlayerInventory extends Inventory { public ItemStack getBoots(); /** + * Stores the ItemStack at the given index of the inventory. + * <p> + * Indexes 0 through 8 refer to the hotbar. 9 through 35 refer to the main inventory, counting up from 9 at the top + * left corner of the inventory, moving to the right, and moving to the row below it back on the left side when it + * reaches the end of the row. It follows the same path in the inventory like you would read a book. + * <p> + * Indexes 36 through 39 refer to the armor slots. Though you can set armor with this method using these indexes, + * you are encouraged to use the provided methods for those slots. + * <p> + * If you attempt to use this method with an index less than 0 or greater than 39, an ArrayIndexOutOfBounds + * exception will be thrown. + * + * @param index The index where to put the ItemStack + * @param item The ItemStack to set + * @throws ArrayIndexOutOfBoundsException when index < 0 || index > 39 + * @see #setBoots(ItemStack) + * @see #setChestplate(ItemStack) + * @see #setHelmet(ItemStack) + * @see #setLeggings(ItemStack) + */ + @Override + public void setItem(int index, ItemStack item); + + /** * Put the given ItemStacks into the armor slots * * @param items The ItemStacks to use as armour |