Package org.bukkit.event.inventory
Class InventoryMoveItemEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.inventory.InventoryMoveItemEvent
- All Implemented Interfaces:
- Cancellable
Called when some entity or block (e.g. hopper) tries to move items directly
 from one inventory to another.
 
When this event is called, the initiator may already have removed the item from the source inventory and is ready to move it into the destination inventory.
If this event is cancelled, the items will be returned to the source inventory, if needed.
If this event is not cancelled, the initiator will try to put the ItemStack into the destination inventory. If this is not possible and the ItemStack has not been modified, the source inventory slot will be restored to its former state. Otherwise any additional items will be discarded.
- 
Nested Class SummaryNested classes/interfaces inherited from class org.bukkit.event.EventEvent.Result
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionGets the Inventory that the ItemStack is being put intostatic @NotNull HandlerListGets the Inventory that initiated the transfer.getItem()Gets the ItemStack being moved; if modified, the original item will not be removed from the source inventory.Gets the Inventory that the ItemStack is being taken frombooleanGets the cancellation state of this event.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.voidSets the ItemStack being moved; if this is different from the original ItemStack, the original item will not be removed from the source inventory.Methods inherited from class org.bukkit.event.EventcallEvent, getEventName, isAsynchronous
- 
Field Details- 
calledGetItempublic boolean calledGetItem
- 
calledSetItempublic boolean calledSetItem
 
- 
- 
Constructor Details- 
InventoryMoveItemEvent
 
- 
- 
Method Details- 
getSourceGets the Inventory that the ItemStack is being taken from- Returns:
- Inventory that the ItemStack is being taken from
 
- 
getItemGets the ItemStack being moved; if modified, the original item will not be removed from the source inventory.- Returns:
- ItemStack
 
- 
setItemSets the ItemStack being moved; if this is different from the original ItemStack, the original item will not be removed from the source inventory.- Parameters:
- itemStack- The ItemStack
 
- 
getDestinationGets the Inventory that the ItemStack is being put into- Returns:
- Inventory that the ItemStack is being put into
 
- 
getInitiatorGets the Inventory that initiated the transfer. This will always be either the destination or source Inventory.- Returns:
- Inventory that initiated the transfer
 
- 
isCancelledpublic boolean isCancelled()Description copied from interface:CancellableGets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
- isCancelledin interface- Cancellable
- Returns:
- true if this event is cancelled
 
- 
setCancelledpublic void setCancelled(boolean cancel) Description copied from interface:CancellableSets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.- Specified by:
- setCancelledin interface- Cancellable
- Parameters:
- cancel- true if you wish to cancel this event
 
- 
getHandlers- Specified by:
- getHandlersin class- Event
 
- 
getHandlerList
 
-